[pypy-svn] r62631 - pypy/dist/pypy/doc
hpk at codespeak.net
hpk at codespeak.net
Fri Mar 6 11:25:35 CET 2009
Author: hpk
Date: Fri Mar 6 11:25:32 2009
New Revision: 62631
Modified:
pypy/dist/pypy/doc/coding-guide.txt
pypy/dist/pypy/doc/confrest.py
pypy/dist/pypy/doc/getting-started.txt
pypy/dist/pypy/doc/interpreter.txt
pypy/dist/pypy/doc/maemo.txt
pypy/dist/pypy/doc/rffi.txt
pypy/dist/pypy/doc/svn-help.txt
pypy/dist/pypy/doc/theory.txt
Log:
fixing links to go to dist, not trunk
Modified: pypy/dist/pypy/doc/coding-guide.txt
==============================================================================
--- pypy/dist/pypy/doc/coding-guide.txt (original)
+++ pypy/dist/pypy/doc/coding-guide.txt Fri Mar 6 11:25:32 2009
@@ -173,7 +173,7 @@
enables the code generator to emit efficient machine level replacements
for pure integer objects, for instance.
-.. _`pyopcode.py`: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/pyopcode.py
+.. _`pyopcode.py`: http://codespeak.net/svn/pypy/dist/pypy/interpreter/pyopcode.py
Restricted Python
=================
@@ -861,11 +861,11 @@
allows checkin/checkout in native line-ending format.
- branching (aka "svn copy") of source code should usually
- happen at ``svn/pypy/trunk`` level in order to have a full
+ happen at ``svn/pypy/dist`` level in order to have a full
self-contained pypy checkout for each branch. For branching
a ``try1`` branch you would for example do::
- svn cp http://codespeak.net/svn/pypy/trunk \
+ svn cp http://codespeak.net/svn/pypy/dist \
http://codespeak.net/svn/pypy/branch/try1
This allows to checkout the ``try1`` branch and receive a
Modified: pypy/dist/pypy/doc/confrest.py
==============================================================================
--- pypy/dist/pypy/doc/confrest.py (original)
+++ pypy/dist/pypy/doc/confrest.py Fri Mar 6 11:25:32 2009
@@ -20,7 +20,7 @@
html.a("documentation", href=self.get_doclink("index.html"),
class_="menu"),
" ",
- html.a("svn", href="https://codespeak.net/viewvc/pypy/trunk/",
+ html.a("svn", href="https://codespeak.net/viewvc/pypy/dist/",
class_="menu"),
" ",
html.a("issues",
Modified: pypy/dist/pypy/doc/getting-started.txt
==============================================================================
--- pypy/dist/pypy/doc/getting-started.txt (original)
+++ pypy/dist/pypy/doc/getting-started.txt Fri Mar 6 11:25:32 2009
@@ -43,7 +43,7 @@
some `help on installing subversion`_ for PyPy. Then you can issue on
the command line (DOS box or terminal)::
- svn co http://codespeak.net/svn/pypy/trunk pypy-dist
+ svn co http://codespeak.net/svn/pypy/dist pypy-dist
This will create a directory named ``pypy-dist``, and will get you the PyPy
source in ``pypy-dist/pypy`` and documentation files in
@@ -868,15 +868,15 @@
.. _`Dot Graphviz`: http://www.graphviz.org/
.. _Pygame: http://www.pygame.org/
-.. _pyopcode.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/pyopcode.py
-.. _eval.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/eval.py
-.. _pyframe.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/pyframe.py
-.. _function.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/function.py
-.. _argument.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/argument.py
-.. _baseobjspace.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/baseobjspace.py
-.. _module.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/module.py
-.. _mixedmodule.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/mixedmodule.py
-.. _typedef.py: http://codespeak.net/svn/pypy/trunk/pypy/interpreter/typedef.py
+.. _pyopcode.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/pyopcode.py
+.. _eval.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/eval.py
+.. _pyframe.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/pyframe.py
+.. _function.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/function.py
+.. _argument.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/argument.py
+.. _baseobjspace.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/baseobjspace.py
+.. _module.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/module.py
+.. _mixedmodule.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/mixedmodule.py
+.. _typedef.py: http://codespeak.net/svn/pypy/dist/pypy/interpreter/typedef.py
.. _Standard object space: objspace.html#the-standard-object-space
.. _objspace.py: ../../pypy/objspace/std/objspace.py
.. _thunk: ../../pypy/objspace/thunk.py
Modified: pypy/dist/pypy/doc/interpreter.txt
==============================================================================
--- pypy/dist/pypy/doc/interpreter.txt (original)
+++ pypy/dist/pypy/doc/interpreter.txt Fri Mar 6 11:25:32 2009
@@ -269,7 +269,7 @@
example and the higher level `chapter on Modules in the coding
guide`_.
-.. _`__builtin__ module`: http://codespeak.net/svn/pypy/trunk/pypy/module/
+.. _`__builtin__ module`: http://codespeak.net/svn/pypy/dist/pypy/module/
.. _`chapter on Modules in the coding guide`: coding-guide.html#modules
.. _`Gateway classes`:
Modified: pypy/dist/pypy/doc/maemo.txt
==============================================================================
--- pypy/dist/pypy/doc/maemo.txt (original)
+++ pypy/dist/pypy/doc/maemo.txt Fri Mar 6 11:25:32 2009
@@ -135,7 +135,7 @@
Now, on the host system, perform a subversion checkout of PyPy::
- svn co https://codespeak.net/svn/pypy/trunk pypy-trunk
+ svn co https://codespeak.net/svn/pypy/dist pypy-trunk
Several svn revisions since the 60000's are known to work and
the last manually tested one is currently 65011.
Modified: pypy/dist/pypy/doc/rffi.txt
==============================================================================
--- pypy/dist/pypy/doc/rffi.txt (original)
+++ pypy/dist/pypy/doc/rffi.txt Fri Mar 6 11:25:32 2009
@@ -42,7 +42,7 @@
See cbuild_ for more info on ExternalCompilationInfo.
-.. _cbuild: http://codespeak.net/svn/pypy/trunk/pypy/translator/tool/cbuild.py
+.. _cbuild: http://codespeak.net/svn/pypy/dist/pypy/translator/tool/cbuild.py
Types
@@ -55,7 +55,7 @@
flavor='raw'. There are several helpers like string -> char*
converter, refer to the source for details.
-.. _rffi: http://codespeak.net/svn/pypy/trunk/pypy/rpython/lltypesystem/rffi.py
+.. _rffi: http://codespeak.net/svn/pypy/dist/pypy/rpython/lltypesystem/rffi.py
Registering function as external
---------------------------------
@@ -67,7 +67,7 @@
functions, passing llimpl as an argument and eventually llfakeimpl
as a fake low-level implementation for tests performed by an llinterp.
-.. _`extfunc.py`: http://codespeak.net/svn/pypy/trunk/pypy/rpython/extfunc.py
+.. _`extfunc.py`: http://codespeak.net/svn/pypy/dist/pypy/rpython/extfunc.py
OO backends
Modified: pypy/dist/pypy/doc/svn-help.txt
==============================================================================
--- pypy/dist/pypy/doc/svn-help.txt (original)
+++ pypy/dist/pypy/doc/svn-help.txt Fri Mar 6 11:25:32 2009
@@ -40,7 +40,7 @@
deb http://fs.cs.fhm.edu/mirror/backports.org/debian stable subversion
-Note that you can always go look at the files online_ with your browser, located at: http://codespeak.net/svn/pypy/trunk
+Note that you can always go look at the files online_ with your browser, located at: http://codespeak.net/svn/pypy/dist
But, you'll want to check out your own local copies to work on.
Check out and Check in
@@ -48,7 +48,7 @@
In order to get the sourcecode and docs downloaded onto your drive, open a shell or commandline and type::
- $ svn co http://codespeak.net/svn/pypy/trunk
+ $ svn co http://codespeak.net/svn/pypy/dist
If you are behind a dump proxy this may or may not work; see below.
@@ -149,5 +149,5 @@
.. _Win: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=4B6140F9-2D36-4977-8FA1-6F8A0F5DCA8F
.. _guide: http://svnbook.red-bean.com/book.html#svn-ch-1
.. _backports: http://www.backports.org
-.. _online: http://codespeak.net/svn/pypy/trunk/
+.. _online: http://codespeak.net/svn/pypy/dist/
.. _coding-guide: coding-guide.html
Modified: pypy/dist/pypy/doc/theory.txt
==============================================================================
--- pypy/dist/pypy/doc/theory.txt (original)
+++ pypy/dist/pypy/doc/theory.txt Fri Mar 6 11:25:32 2009
@@ -81,7 +81,7 @@
one`_ written in RPython_ for the purposes of the StdObjSpace_, and a `short
two-arguments-dispatching one`_ used internally by the annotator_.
-.. _`quite general one`: http://codespeak.net/svn/pypy/trunk/pypy/objspace/std/multimethod.py
+.. _`quite general one`: http://codespeak.net/svn/pypy/dist/pypy/objspace/std/multimethod.py
.. _StdObjSpace: objspace.html#the-standard-object-space
-.. _`short two-arguments-dispatching one`: http://codespeak.net/svn/pypy/trunk/pypy/annotation/pairtype.py
+.. _`short two-arguments-dispatching one`: http://codespeak.net/svn/pypy/dist/pypy/annotation/pairtype.py
.. _annotator: translation.html#annotator
More information about the Pypy-commit
mailing list