I've come across the need lately, for my applications to be completely
standalone, and this has presented itself a few problems:

- I need urls.py to be dynamically editable (at least at runtime). I
think I can deal with this one, just haven't gotten to it.
- More importantly, I need urls.py to be able to accept relative
module imports.

Now, keep in mind I haven't honestly read much of Django's
documentation, so this could be doable.. but I'm thinking not in the
way I'd assume it is.

What I currently am doing:

from django.conf.urls.defaults import *

urlpatterns = patterns('projectm.modules.businesses.views',
    (r'^(?P<city_slug>[a-z0-9_-]+)/$', 'view_city'),
    (r'^(?P<city_slug>[a-z0-9_-]+)/category/(?P<category_slug>[a-
z0-9_-]+)/$', 'view_category'),
    (r'^(?P<city_slug>[a-z0-9_-]+)/all-categories/$',
'view_category_list'),
)

This is then included in the base urls.py (which is where the dynamic
element comes into play).

Now, what I want to do:

from django.conf.urls.defaults import *

urlpatterns = patterns('views',
    (r'^(?P<city_slug>[a-z0-9_-]+)/$', 'view_city'),
    (r'^(?P<city_slug>[a-z0-9_-]+)/category/(?P<category_slug>[a-
z0-9_-]+)/$', 'view_category'),
    (r'^(?P<city_slug>[a-z0-9_-]+)/all-categories/$',
'view_category_list'),
)

Possibly:

from django.conf.urls.defaults import *
import views

urlpatterns = patterns(views,
    (r'^(?P<city_slug>[a-z0-9_-]+)/$', 'view_city'),
    (r'^(?P<city_slug>[a-z0-9_-]+)/category/(?P<category_slug>[a-
z0-9_-]+)/$', 'view_category'),
    (r'^(?P<city_slug>[a-z0-9_-]+)/all-categories/$',
'view_category_list'),
)

Has anyone achieved anything similar to this?
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to