Skip to content

Commit

Permalink
integrate optional page into web site
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Oct 20, 2012
1 parent d3e70b8 commit 8d30c24
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .hgignore
Expand Up @@ -10,6 +10,7 @@ cython_debug/
.git/
.gitrev
.coverage
funding.txt
*.orig
*.rej
*.dep
Expand Down
9 changes: 8 additions & 1 deletion doc/docstructure.py
@@ -1,7 +1,14 @@

import os

if os.path.exists(os.path.join(os.path.dirname(__file__), '..', 'funding.txt')):
funding = ('../funding.txt',)
else:
funding = ()

SITE_STRUCTURE = [
('lxml', ('main.txt', 'intro.txt', '../INSTALL.txt', # 'lxml2.txt',
'performance.txt', 'compatibility.txt', 'FAQ.txt')),
'performance.txt', 'compatibility.txt', 'FAQ.txt') + funding),
('Developing with lxml', ('tutorial.txt', '@API reference',
'api.txt', 'parsing.txt',
'validation.txt', 'xpathxslt.txt',
Expand Down

0 comments on commit 8d30c24

Please sign in to comment.