On Friday 15 January 2010 03:52:16 Sebastian Pawlus wrote: > I see but i thing there is more than my personal preference. > > http://docs.djangoproject.com/en/dev/howto/deployment/modpython/ > > <Location "/mysite/"> > > SetHandler python-program > PythonHandler django.core.handlers.modpython > SetEnv DJANGO_SETTINGS_MODULE mysite.settings > PythonOption django.root /mysite > PythonDebug On > *PythonPath "['/path/to/project'] + sys.path"* > </Location> > > If I'm using project path, this bottom is going to produce errors. I'm > really curious about that '/path/to/project' is that project is project > where the settings.py file is, or is this only wrapper for > /path/to/project/mysite/settings.py. (where the mysite is really a project > in django meaning) > > It's a bit unclear for me. >
'/path/to/project' is just a path to the projects parent directory, where mysite.settings can be imported. This is the basic minimum you need to get your porject running. I normally add two paths to my PythonPath setting, PythonPath "['/path/to/project/parent', '/path/to/project/parent/mysite'] + sys.path" The first one is to the mysite's parent directory so importing mysite.settings doesn't fail, the second path is the path to the actual project directory putting project specific apps into the Python path, so I can import them directly. There is also, if your apps files all live in the same directory, like: mysite/ app1/ __init__.py models.py views.py forms.py In views.py you can do `from models import MyModel` python by default will always search the current directory (in this case where views.py lives) for the module name, models not being a global name, makes this safe. I think what you're really unclear on is how the PythonPath setting works, which case you should read up on it in the Python Docs[1], Mike [1] http://docs.python.org/using/cmdline.html#envvar-PYTHONPATH -- Actresses will happen in the best regulated families. -- Addison Mizner and Oliver Herford, "The Entirely New Cynic's Calendar", 1905
signature.asc
Description: This is a digitally signed message part.