Attachment 'autotoc-1.6.1.patch'
Download 1 --- Page.py.orig Fri Jan 18 21:42:47 2008
2 +++ Page.py Wed Mar 26 08:53:50 2008
3 @@ -1161,6 +1161,16 @@
4 elif not request.user.may.read(self.page_name):
5 request.write("<strong>%s</strong><br>" % _("You are not allowed to view this page.", formatted=False))
6 else:
7 + # if the config file has the "auto_toc" setting, insert a table
8 + # of contents if the page has any headings
9 + want_toc = True
10 + try:
11 + want_toc = self.cfg.auto_toc
12 + except:
13 + pass
14 + if want_toc and pi['format'] == 'wiki' and not send_missing_page and (body.find("\n= ") >= 0 or body.find("\n== ") >= 0):
15 + body = "<<TableOfContents>>\n" + body
16 +
17 # start wiki content div
18 request.write(self.formatter.startContent(content_id))
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.