[pypy-svn] r20396 - pypy/dist/pypy/doc

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Nov 29 16:51:33 CET 2005


Author: cfbolz
Date: Tue Nov 29 16:51:30 2005
New Revision: 20396

Added:
   pypy/dist/pypy/doc/dynamic-language-translation.txt
      - copied unchanged from r20377, pypy/dist/pypy/doc/draft-dynamic-language-translation.txt
   pypy/dist/pypy/doc/low-level-encapsulation.txt
      - copied unchanged from r20377, pypy/dist/pypy/doc/draft-low-level-encapsulation.txt
   pypy/dist/pypy/doc/translation-aspects.txt
      - copied unchanged from r20377, pypy/dist/pypy/doc/draft-memory-management-threading-model.txt
Removed:
   pypy/dist/pypy/doc/draft-dynamic-language-translation.txt
   pypy/dist/pypy/doc/draft-low-level-encapsulation.txt
   pypy/dist/pypy/doc/draft-memory-management-threading-model.txt
Modified:
   pypy/dist/pypy/doc/index.txt
   pypy/dist/pypy/doc/redirections
Log:
remove the draft- part of the report names. add redirections (that don't work,
but anyway). add links to index.html.


Modified: pypy/dist/pypy/doc/index.txt
==============================================================================
--- pypy/dist/pypy/doc/index.txt	(original)
+++ pypy/dist/pypy/doc/index.txt	Tue Nov 29 16:51:30 2005
@@ -22,6 +22,16 @@
 `translation`_ offers the beginnings of documentation 
 about our low level code generator backends. 
 
+`dynamic-language translation`_ is a paper that describes
+the translation process, especially the flow object space
+and the annotator in detail.
+
+`low-level encapsulation`_ describes how our approach hides
+away a lot of low level details.
+
+`translation aspects`_ describes how we weave different
+properties into our interpreter during the translation process.
+
 `parser`_ contains the beginnings of documentation about
 the parser (and the compiler at some point). 
 
@@ -50,6 +60,9 @@
 .. _`PyPy statistics`: http://codespeak.net/~hpk/pypy-stat/
 .. _`object spaces`: objspace.html 
 .. _`translation`: translation.html 
+.. _`dynamic-language translation`: dynamic-language-translation.html
+.. _`low-level encapsulation`: low-level-encapsulation.html
+.. _`translation aspects`: translation-aspects.html
 .. _`coding guide`: coding-guide.html 
 .. _`architecture`: architecture.html 
 .. _`revision report`: http://codespeak.net/pypy/rev/current 

Modified: pypy/dist/pypy/doc/redirections
==============================================================================
--- pypy/dist/pypy/doc/redirections	(original)
+++ pypy/dist/pypy/doc/redirections	Tue Nov 29 16:51:30 2005
@@ -31,5 +31,9 @@
     'getting_started.html'  : 'getting-started.html', 
     'getting_started.html#howtopypy' : 'getting-started.html#howtopypy',
     'getting_started.html#howtosvn' : 'getting-started.html#howtosvn',
+
+    'draft-dynamic-language-translation.html': 'dynamic-language-translation.html',
+    'draft-low-level-encapsulation.html': 'low-level-encapsulation.html',
+    'draft-memory-management-threading-model.html': 'translation-aspects.html',
 }
 



More information about the Pypy-commit mailing list