summaryrefslogtreecommitdiffstats
path: root/devel/urls.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-04-26 01:09:39 +0200
committerDan McGee <dan@archlinux.org>2011-04-26 01:09:39 +0200
commit381e0a787205af530ae11bac1b1a17e567eecc84 (patch)
tree7d1904c757972b3ffd7f2aa101b2d88be3df7987 /devel/urls.py
parente6717510a0a7976fca1ccd3e5aaf1a16123a1ad4 (diff)
downloadarchweb-381e0a787205af530ae11bac1b1a17e567eecc84.tar.gz
archweb-381e0a787205af530ae11bac1b1a17e567eecc84.tar.xz
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>
Diffstat (limited to 'devel/urls.py')
-rw-r--r--devel/urls.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/devel/urls.py b/devel/urls.py
index 41be2b3..9bf50f4 100644
--- a/devel/urls.py
+++ b/devel/urls.py
@@ -1,12 +1,13 @@
from django.conf.urls.defaults import patterns
urlpatterns = patterns('devel.views',
- (r'^$', 'index'),
+ (r'^admin_log/$','admin_log'),
+ (r'^admin_log/(?P<username>.*)/$','admin_log'),
(r'^clock/$', 'clock'),
- (r'^profile/$', 'change_profile'),
+ (r'^$', 'index'),
(r'^newuser/$', 'new_user_form'),
- (r'^admin_log/(?P<username>.*)/$','admin_log'),
- (r'^admin_log/$','admin_log'),
+ (r'^profile/$', 'change_profile'),
+ (r'^reports/(?P<report>.*)/$', 'report'),
)
# vim: set ts=4 sw=4 et: