summaryrefslogtreecommitdiffstats
path: root/module/web/cnl/urls.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-02-05 22:08:48 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-02-05 22:08:48 +0100
commitb4aa60892fb60efd57f593006f35f94868a646da (patch)
tree20e3dc3d8487269c5167e5cc73dabcd8261a4826 /module/web/cnl/urls.py
parentfixed gui config error (diff)
downloadpyload-b4aa60892fb60efd57f593006f35f94868a646da.tar.xz
FlashGot + ClickNLoad Support + Webif. improvm.!! pyLoad FTW !!
Diffstat (limited to 'module/web/cnl/urls.py')
-rw-r--r--module/web/cnl/urls.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/module/web/cnl/urls.py b/module/web/cnl/urls.py
new file mode 100644
index 000000000..5e06b639f
--- /dev/null
+++ b/module/web/cnl/urls.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+from django.conf.urls.defaults import *
+
+
+urlpatterns = patterns('cnl',
+ # Example:
+ # (r'^pyload/', include('pyload.foo.urls')),
+
+ # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
+ # to INSTALLED_APPS to enable admin documentation:
+ # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
+
+ # Uncomment the next line to enable the admin:
+ (r'^add$', 'views.add'),
+ (r'^addcrypted$', 'views.addcrypted'),
+ (r'^addcrypted2$', 'views.addcrypted2'),
+ (r'', 'views.flash')
+ ) \ No newline at end of file