projects
/
kisspi.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added nobts path to page module to no show edit button
[kisspi.git]
/
modules
/
page
/
__init__.py
1
'''
2
Markdown style pages. Simple wiki or static pages
3
'''
4
5
import page
6
7
urls = (
8
('nobts/(.+)', page.Nobts),
9
('edit/(.+)', page.Edit),
10
('(.+)', page.Show),
11
)
12
13
admin = None
14
add = None