Re: moving apps into a subfolder?

2007-04-20 Thread drourke
Your sub-folder, in your case 'apps', needs to be a python module. Simply copy (not move) the file '__init__.py from your project directory into your apps directory. In this manner, apps.blog will be found. __init__.py is an empty file by default. On Apr 20, 9:51 am, drackett <[EMAIL PROTECTED

Re: audit trail support

2007-04-20 Thread drourke
I would (and do) implement audit trails right in the database itself using the trigger and procedure language that your database provides. In this manner, any front-end application writing to the database will have the audit-trail by default, without need for front-end application support. In ot

Re: django sendmail

2007-04-26 Thread drourke
hi, I've had the same problem I believe. For me the problem was twofold. 1. Trying to reach a third-party smpt server through my local internet connection. In my case, I've been at several locations where I try to send mail to the webfaction smpt server via the local internet connection. I ca