On Sat, Jan 10, 2009 at 1:15 PM, uber.ubiwanken...@gmail.com
<uber.ubiwanken...@gmail.com> wrote:
>
> Sorry, I'm afraid I was not too clear.
> For example:
>
> I've got 2 projects 'myproject1' and 'myproject2' that use django-cms
> (and django-tinymce and so on...).
> 'myproject1' use an old version of django-cms, 'myproject2' a new one.
>
> In settings.py of my projects I have:
>
> INSTALLED_APPS = (
>                ...
>                'cms',
>                'tinymce',
>                'filebrowser',
>                ...
> )
>
> In my .profile I have something like this:
>
>  export PYTHONPATH=/Users/giorgio/workspaces/django/apps:$PYTHONPATH
>
> and in /Users/giorgio/workspaces/django/apps I have the old version of
> diango-cms that I don't want to update.
>
> What I have to do? How I have to put the new version?
> How can I have both versions of django-cms?
>

Thinking could create a separate apps directory for each project?  Or
put the old django-cms in a apps-old directory and then set your
python path for that specific project to be

export 
PYTHONPATH=/Users/giorgio/workspaces/django/apps-old:/Users/giorgio/workspaces/django/apps

That's one idea ..

If you were deploying with mod_wsgi then you could do a similar thing
in your dispatch.wsgi file with sys.path.insert() to specify your
python path for each project.

--
Milan

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to