| Line | |
|---|
| 1 | from django.conf.urls.defaults import * |
|---|
| 2 | |
|---|
| 3 | urlpatterns = patterns('mailng.extensions.webmail.main', |
|---|
| 4 | (r'^$', "index"), |
|---|
| 5 | (r'^compose/$', "compose"), |
|---|
| 6 | (r'^move/$', "move"), |
|---|
| 7 | (r'^empty/(?P<name>.+)/', "empty"), |
|---|
| 8 | (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/part/$', 'getattachment'), |
|---|
| 9 | (r'^(?P<fdname>.+)/(?P<mail_id>[\w\-\+]+)/delete/$', 'delete'), |
|---|
| 10 | (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/content/$', 'getmailcontent'), |
|---|
| 11 | (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/forward/$', 'forward'), |
|---|
| 12 | (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/reply/$', 'reply'), |
|---|
| 13 | (r'^(?P<folder>.+)/(?P<mail_id>[\w\-\+]+)/$', 'viewmail'), |
|---|
| 14 | (r'^(?P<name>.+)/$', "folder"), |
|---|
| 15 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.