view apps/bundle/urls.py @ 190:a4f88ac85837

Changes: Now guest users cannot see revision history and they also cannot see snippets posted by registered users. To see snippets posted by registered users, one has to login.
author ahsanalishahid <ahsan.ali.shahid@gmail.com>
date Thu, 20 Jun 2013 17:17:16 +0500
parents 86129d185ddb
children 4033ebe1867f
line wrap: on
line source

from django.conf.urls.defaults import *


BUNDLE_PATTERN = r'^(?P<user>[^/]*)/(?P<bundle>[^/]+)'
VERSION_PATTERN = '(?P<version>\d+)'


urlpatterns = patterns('apps.bundle.views',
    url(BUNDLE_PATTERN + '/?$', 'detail', name='bundle_details'),
    url(BUNDLE_PATTERN + '/' + VERSION_PATTERN + '/?$', 'detail',
        name='bundle_version'),
    url(BUNDLE_PATTERN + '/edit', 'edit', name='bundle_edit'),
    url(BUNDLE_PATTERN + '/' + VERSION_PATTERN + '/(?P<path>.+)/?$',
        'file_detail', name='bundlefile_details'),
    url(r'^$', 'index', name='bundle_new'),
    url(r'^explore$', 'explore', name='bundle_explore'),
)