evorepo/devel/urls.py
Dan McGee 381e0a7872 Developer reports
This commit adds four initial developer reports that are hopefully
useful to developers and packages in checking up on the state of things.
They include:

* big : the 100 biggest packages in the repos
* old : packages built > 2 years ago
* uncompressed-man : self-explanatory
* uncompressed-info : self-explanatory

There should obviously be some sort of index page to access all of
these, so that will be coming soon.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-04-25 18:09:39 -05:00

14 lines
388 B
Python

from django.conf.urls.defaults import patterns
urlpatterns = patterns('devel.views',
(r'^admin_log/$','admin_log'),
(r'^admin_log/(?P<username>.*)/$','admin_log'),
(r'^clock/$', 'clock'),
(r'^$', 'index'),
(r'^newuser/$', 'new_user_form'),
(r'^profile/$', 'change_profile'),
(r'^reports/(?P<report>.*)/$', 'report'),
)
# vim: set ts=4 sw=4 et: