Possible files that need to be cleanedup; commands/info.py:cmd_list commands/general.py:cmd_who commands/comsys.py:cmd_who cmdtable.py ansi.py
8 lines
256 B
Python
Executable file
8 lines
256 B
Python
Executable file
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('apps.news.views',
|
|
(r'^show/(?P<entry_id>\d+)/$', 'show_news'),
|
|
(r'^archive/$', 'news_archive'),
|
|
(r'^search/$', 'search_form'),
|
|
(r'^search/results/$', 'search_results'),
|
|
)
|