[pypy-svn] r16214 - pypy/branch/dist-newdoc/pypy/documentation

hpk at codespeak.net hpk at codespeak.net
Mon Aug 22 16:56:17 CEST 2005


Author: hpk
Date: Mon Aug 22 16:56:07 2005
New Revision: 16214

Modified:
   pypy/branch/dist-newdoc/pypy/documentation/navlist
   pypy/branch/dist-newdoc/pypy/documentation/redirections
   pypy/branch/dist-newdoc/pypy/documentation/test_redirections.py
Log:
fix redirection information to follow the current paths


Modified: pypy/branch/dist-newdoc/pypy/documentation/navlist
==============================================================================
--- pypy/branch/dist-newdoc/pypy/documentation/navlist	(original)
+++ pypy/branch/dist-newdoc/pypy/documentation/navlist	Mon Aug 22 16:56:07 2005
@@ -1,6 +1,6 @@
 [
     'architecture.html', 
-    'getting_started.html', 
+    'getting-started.html', 
     'coding-guide.html', 
     'objspace.html',
     'translation.html',

Modified: pypy/branch/dist-newdoc/pypy/documentation/redirections
==============================================================================
--- pypy/branch/dist-newdoc/pypy/documentation/redirections	(original)
+++ pypy/branch/dist-newdoc/pypy/documentation/redirections	Mon Aug 22 16:56:07 2005
@@ -10,8 +10,8 @@
     'abstractobjspace.html' : 'theory.html#abstract-interpretation',
     'multimethod.html'      : 'theory.html#multimethods',
 
-    'howtopypy.html'        : 'getting_started.html#howtopypy',
-    'howtosvn.html'         : 'getting_started.html#howtosvn',
+    'howtopypy.html'        : 'getting-started.html#howtopypy',
+    'howtosvn.html'         : 'getting-started.html#howtosvn',
     'checking_ReST.html'    : 'coding-guide.html#pypy-documentation', 
     'optionaltools.html'    : 'coding-guide.html#optionaltool', 
 
@@ -29,5 +29,7 @@
     'controlflow.html'      : 'objspace.html#the-flow-model',
 
     'getting_started.html'  : 'getting-started.html', 
+    'getting_started.html#howtopypy' : 'getting-started.html#howtopypy',
+    'getting_started.html#howtosvn' : 'getting-started.html#howtosvn',
 }
 

Modified: pypy/branch/dist-newdoc/pypy/documentation/test_redirections.py
==============================================================================
--- pypy/branch/dist-newdoc/pypy/documentation/test_redirections.py	(original)
+++ pypy/branch/dist-newdoc/pypy/documentation/test_redirections.py	Mon Aug 22 16:56:07 2005
@@ -3,6 +3,7 @@
 redir = py.magic.autopath().dirpath('redirections') 
 
 def checkexist(path):
+    print "checking", path
     assert path.new(ext='.txt').check(file=1) 
    
 def test_eval(): 



More information about the Pypy-commit mailing list