[pypy-svn] r10794 - pypy/dist/pypy/documentation

hpk at codespeak.net hpk at codespeak.net
Sun Apr 17 22:21:27 CEST 2005


Author: hpk
Date: Sun Apr 17 22:21:27 2005
New Revision: 10794

Added:
   pypy/dist/pypy/documentation/navlist
Modified:
   pypy/dist/pypy/documentation/test_redirections.py
Log:
introduce a navlist (needs to be used by the web interface) 
for the left side navigation of the documentation page


Added: pypy/dist/pypy/documentation/navlist
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/documentation/navlist	Sun Apr 17 22:21:27 2005
@@ -0,0 +1,8 @@
+[
+    'getting_started.html', 
+    'architecture.html', 
+    'coding-style.html', 
+    'objspace.html', 
+    'misc.html', 
+    'theory.html', 
+]

Modified: pypy/dist/pypy/documentation/test_redirections.py
==============================================================================
--- pypy/dist/pypy/documentation/test_redirections.py	(original)
+++ pypy/dist/pypy/documentation/test_redirections.py	Sun Apr 17 22:21:27 2005
@@ -13,3 +13,6 @@
     d = test_eval() 
     for newname in d.values(): 
         yield checkexist, redir.dirpath(newname) 
+
+def test_navlist(): 
+    assert eval(redir.dirpath('navlist').read())



More information about the Pypy-commit mailing list