Re: database table prefix

2007-02-28 Thread TeLeNiEkO (Marc Fargas)
No, there's no global way. But django models know about SITE_ID so you should not care about this, depending on your scenario. Sites, Groups, Users, etc would be shared across all sites but every site will have it's own table for your applications if you take the "db_table = SITE_ID" approac

Re: Splitting models.py into separate modules

2007-01-18 Thread telenieko
Hi yary, For SVN versions you can take a look at ticket #2982 ( http://code.djangoproject.com/ticket/2982) for a near future method, right now you may go for: http://code.djangoproject.com/wiki/CookBookSplitModelsToFiles On 1/18/07, yary <[EMAIL PROTECTED]> wrote: Does this post still hold tru

Re: How to create back-end PostgreSQL SQL triggers and stored functions?

2007-01-16 Thread telenieko
Hi Jeffrey, I use the /sql/.sql approach to create stored procedures and views without any problem: i.e, on sql/MyModel.postgresql_psycopg2.sql CREATE OR REPLACE FUNCTION myschema.my_function ( input_cuenta integer, input_fecha date, OUT id integer, OUT texto text,

Re: Auto-login with REMOTE_USER

2006-12-18 Thread TeLeNiEkO (Marc Fargas)
Hi, You'd maybe like to give a look at #689 [ http://code.djangoproject.com/ticket/689 ] it talks about honouring the REMOTE_USER ;) Cheers, Marc. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" gro

Re: How to svn -co Django sources

2006-11-14 Thread telenieko
Hi,From: http://www.djangoproject.com/documentation/install/ [Installing the development version], svn co http://code.djangoproject.com/svn/django/trunk/ django_srcln -s `pwd`/django_src/django /usr/lib/python2.3/site-packages/djangoBetter do that in another fresh new folder.Cheers, Marc. On 11/1