view apps/bundle/urls.py @ 209:4033ebe1867f

Add ability to download files This makes use of a new model (BundleVersion) to keep track of the locations on disk of the original uploads for each version. This will require some manual processing to get it working for existing bundles, since the information needed isn't being stored at the moment.
author dellsystem <ilostwaldo@gmail.com>
date Sun, 17 Feb 2013 14:57:39 -0500
parents 86129d185ddb
children
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 + '/download/?$',
        'download', name='bundle_download'),
    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'),
)