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

hpk at codespeak.net hpk at codespeak.net
Tue Jan 15 15:19:26 CET 2008


Author: hpk
Date: Tue Jan 15 15:19:23 2008
New Revision: 50629

Added:
   pypy/dist/pypy/doc/contact.html
   pypy/dist/pypy/doc/news.html
   pypy/dist/pypy/doc/old_news.txt
      - copied unchanged from r50603, pypy/dist/pypy/doc/news.txt
Removed:
   pypy/dist/pypy/doc/contact.txt
   pypy/dist/pypy/doc/news.txt
Modified:
   pypy/dist/pypy/doc/confrest.py
   pypy/dist/pypy/doc/faq.txt
   pypy/dist/pypy/doc/getting-started.txt
   pypy/dist/pypy/doc/project-ideas.txt
Log:
major update to codespeak'S PyPy site structure
* home.txt/html new entry point with main links 
* no contact.txt (subsumed and streamline into home.txt) 
* no news.txt (instead there is the external "blog" now) 
* news.html and contact.html redirect to home.html 
* various fixes of links, removal of cruft information 


Modified: pypy/dist/pypy/doc/confrest.py
==============================================================================
--- pypy/dist/pypy/doc/confrest.py	(original)
+++ pypy/dist/pypy/doc/confrest.py	Tue Jan 15 15:19:23 2008
@@ -4,22 +4,25 @@
 class PyPyPage(Page): 
     def fill_menubar(self):
         self.menubar = html.div(
-            html.a("news",
-                   href="http://codespeak.net/pypy/dist/pypy/doc/news.html",
-                   class_="menu"), " ",
+            html.a("home", 
+                   href=self.get_doclink("home.html"), 
+                   class_="menu"), 
+            " ",
             html.a("blog", href="http://morepypy.blogspot.com", class_="menu"),
+            " ", 
             html.a("getting-started",
                    href=self.get_doclink("getting-started.html"),
-                   class_="menu"), " ",
+                   class_="menu"), 
+            " ",
             html.a("documentation", href=self.get_doclink("index.html"),
-                   class_="menu"), " ",
+                   class_="menu"),
+            " ", 
             html.a("svn", href="https://codespeak.net/viewvc/pypy/dist/",
-                   class_="menu"), " ",
+                   class_="menu"),
+            " ", 
             html.a("issues",
                    href="https://codespeak.net/issue/pypy-dev/",
                    class_="menu"),
-            html.a("contact", href=self.get_doclink("contact.html"),
-                   class_="menu"), " ",
             " ", id="menubar")
 
     def get_doclink(self, target):

Added: pypy/dist/pypy/doc/contact.html
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/doc/contact.html	Tue Jan 15 15:19:23 2008
@@ -0,0 +1,17 @@
+
+<html>
+    <head>
+        <meta http-equiv="refresh" 
+              content="0 ; URL=http://codespeak.net/pypy/dist/pypy/doc/home.html" />
+        <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
+        <META HTTP-EQUIV="expires" CONTENT="0">
+    </head>
+    <body>
+        <p>
+            you should be automatically redirected to
+            <a href="http://codespeak.net/pypy/dist/pypy/doc/home.html">
+            http://codespeak.net/pypy/dist/pypy/doc/home.html</a>
+        </p>
+    </body>
+</html>
+

Modified: pypy/dist/pypy/doc/faq.txt
==============================================================================
--- pypy/dist/pypy/doc/faq.txt	(original)
+++ pypy/dist/pypy/doc/faq.txt	Tue Jan 15 15:19:23 2008
@@ -197,8 +197,8 @@
 discussions.
 
 .. _`project suggestions`: project-ideas.html
-.. _`contact us`: contact.html
-.. _`mailing list`: contact.html
+.. _`contact us`: home.html
+.. _`mailing list`: http://codespeak.net/mailman/listinfo/pypy-dev
 
 ----------------------------------------------------------------------
 I am getting strange errors while playing with PyPy, what should I do?

Modified: pypy/dist/pypy/doc/getting-started.txt
==============================================================================
--- pypy/dist/pypy/doc/getting-started.txt	(original)
+++ pypy/dist/pypy/doc/getting-started.txt	Tue Jan 15 15:19:23 2008
@@ -844,7 +844,7 @@
 
 .. _events: http://codespeak.net/pypy/dist/pypy/doc/news.html
 .. _`pypy-dev mailing list`: http://codespeak.net/mailman/listinfo/pypy-dev
-.. _`contact possibilities`: contact.html
+.. _`contact possibilities`: home.html
 
 .. _`py library`: http://codespeak.net/py 
 .. _`PyPy/LLVM backend`: translation.html#llvm 
@@ -878,7 +878,7 @@
 .. _trace:                  ../../pypy/objspace/trace.py
 .. _flow:                   ../../pypy/objspace/flow/
 .. _translator.py:          ../../pypy/translator/translator.py
-.. _mailing lists:          contact.html
+.. _mailing lists:          home.html
 .. _documentation:          index.html 
 .. _unit tests:             coding-guide.html#test-design
 .. _bug reports:            https://codespeak.net/issue/pypy-dev/

Added: pypy/dist/pypy/doc/news.html
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/doc/news.html	Tue Jan 15 15:19:23 2008
@@ -0,0 +1,17 @@
+
+<html>
+    <head>
+        <meta http-equiv="refresh" 
+              content="0 ; URL=http://codespeak.net/pypy/dist/pypy/doc/home.html" />
+        <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
+        <META HTTP-EQUIV="expires" CONTENT="0">
+    </head>
+    <body>
+        <p>
+            you should be automatically redirected to
+            <a href="http://codespeak.net/pypy/dist/pypy/doc/home.html">
+            http://codespeak.net/pypy/dist/pypy/doc/home.html</a>
+        </p>
+    </body>
+</html>
+

Modified: pypy/dist/pypy/doc/project-ideas.txt
==============================================================================
--- pypy/dist/pypy/doc/project-ideas.txt	(original)
+++ pypy/dist/pypy/doc/project-ideas.txt	Tue Jan 15 15:19:23 2008
@@ -9,7 +9,7 @@
 with.
 
 Feel free to suggest new ideas and discuss them in #pypy on the freenode IRC
-network or the pypy-dev mailing list (see the contact_ page).
+network or the pypy-dev mailing list (see the home_ page).
 
 -----------
 
@@ -194,7 +194,7 @@
 .. _`code templating solution`: http://codespeak.net/svn/pypy/extradoc/soc-2006/code-templating.txt
 
 .. _documentation: index.html
-.. _contact: contact.html
+.. _home: home.html
 .. _`pypy-dev mailing list`: http://codespeak.net/mailman/listinfo/pypy-dev
 .. _`Summer of PyPy`: summer-of-pypy.html
 .. _`ZODB's Persistent class`: http://www.zope.org/Documentation/Books/ZDG/current/Persistence.stx



More information about the Pypy-commit mailing list