Re: Sharing data between two Django sites

2009-10-29 Thread Benjamin Wohlwend
Hi, On Oct 27, 11:44 am, Graham Dumpleton wrote: > > One could simply overlay URLs from one instance over another. > > For example, using mod_wsgi you should be able to do: > >   WSGIScriptAlias / /some/path/public/site.wsgi >   WSGIScriptAlias /staff-members /some/path/intranet/site.wsgi/staff

Re: Sharing data between two Django sites

2009-10-27 Thread Graham Dumpleton
On Oct 27, 9:18 pm, Benjamin Wohlwend wrote: > Hi, > > I develop and maintain several Django sites that are all part of the > same organization. Some of them are more of the Intranet-type (e.g. > only for internal use), others are publicly accessible (e.g. a CMS). > My problem is that certain

Re: Sharing data between two Django sites

2009-10-27 Thread Thomas Guettler
Hi, we use one postgres database, and several postgres database users. None of them is database superuser. We have a wrapper around manage.py which asks for the database owner password if commands like syncdb are called. And we GRANT privileges the the database users. The code is hosted on two

Sharing data between two Django sites

2009-10-27 Thread Benjamin Wohlwend
Hi, I develop and maintain several Django sites that are all part of the same organization. Some of them are more of the Intranet-type (e.g. only for internal use), others are publicly accessible (e.g. a CMS). My problem is that certain data from the Intranet sites have to be displayed on a publi