[pypy-commit] pypy default: Remove sme references to the old codespeak server

alex_gaynor noreply at buildbot.pypy.org
Tue Feb 5 05:28:03 CET 2013


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r60882:5457ef99d0bb
Date: 2013-02-04 20:27 -0800
http://bitbucket.org/pypy/pypy/changeset/5457ef99d0bb/

Log:	Remove sme references to the old codespeak server

diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst
--- a/pypy/doc/coding-guide.rst
+++ b/pypy/doc/coding-guide.rst
@@ -832,7 +832,7 @@
 for the next milestone, both from an E-Mail and from a
 web interface.
 
-.. _`development tracker`: https://codespeak.net/issue/pypy-dev/
+.. _`development tracker`: https://bugs.pypy.org/
 
 use your codespeak login or register
 ------------------------------------
@@ -841,7 +841,7 @@
 tracker. Else, you can `register with the tracker`_ easily.
 
 
-.. _`register with the tracker`: https://codespeak.net/issue/pypy-dev/user?@template=register
+.. _`register with the tracker`: https://bugs.pypy.org/user?@template=register
 .. _`roundup`: http://roundup.sourceforge.net/
 
 
diff --git a/pypy/doc/confrest.py b/pypy/doc/confrest.py
--- a/pypy/doc/confrest.py
+++ b/pypy/doc/confrest.py
@@ -4,7 +4,8 @@
 from confrest_oldpy import Project, Page, relpath
 html = py.xml.html
 
-class PyPyPage(Page): 
+
+class PyPyPage(Page):
     googlefragment = """
 <script type="text/javascript">
 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
@@ -16,26 +17,27 @@
 pageTracker._trackPageview();
 } catch(err) {}</script>
 """
+
     def fill_menubar(self):
         self.menubar = html.div(
-            html.a("home", 
-                   href=self.get_doclink("index.html"), 
-                   class_="menu"), 
+            html.a("home",
+                   href=self.get_doclink("index.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("docindex.html"),
                    class_="menu"),
-            " ", 
+            " ",
             html.a("hg", href="https://bitbucket.org/pypy/pypy",
                    class_="menu"),
-            " ", 
+            " ",
             html.a("issues",
-                   href="https://codespeak.net/issue/pypy-dev/",
+                   href="https://bugs.pypy.org/",
                    class_="menu"),
             " ", id="menubar")
 
@@ -43,25 +45,25 @@
         return relpath(self.targetpath.strpath,
                        self.project.docpath.join(target).strpath)
 
-    def unicode(self, doctype=True): 
-        page = self._root.unicode() 
+    def unicode(self, doctype=True):
+        page = self._root.unicode()
         page = page.replace("</body>", self.googlefragment + "</body>")
-        if doctype: 
-            return self.doctype + page 
-        else: 
-            return page 
-        
+        if doctype:
+            return self.doctype + page
+        else:
+            return page
 
-class Project(Project): 
+
+class Project(Project):
     mydir = py.path.local(__file__).dirpath()
 
-    title = "PyPy" 
+    title = "PyPy"
     stylesheet = 'style.css'
-    encoding = 'latin1' 
+    encoding = 'latin1'
     prefix_title = "PyPy"
     logo = html.div(
         html.a(
-            html.img(alt="PyPy", id="pyimg", 
-                     src="http://codespeak.net/pypy/img/py-web1.png", 
+            html.img(alt="PyPy", id="pyimg",
+                     src="http://codespeak.net/pypy/img/py-web1.png",
                      height=110, width=149)))
-    Page = PyPyPage 
+    Page = PyPyPage
diff --git a/pypy/doc/getting-started.rst b/pypy/doc/getting-started.rst
--- a/pypy/doc/getting-started.rst
+++ b/pypy/doc/getting-started.rst
@@ -1,10 +1,10 @@
 ==================================
-Getting Started 
+Getting Started
 ==================================
 
 .. contents::
 
-.. _howtopypy: 
+.. _howtopypy:
 
 What is PyPy ?
 ==============
@@ -33,8 +33,8 @@
 .. _`RPython translation toolchain`: translation.html
 .. _`more...`: architecture.html
 
-Just the facts 
-============== 
+Just the facts
+==============
 
 Download a pre-built PyPy
 -------------------------
@@ -125,7 +125,7 @@
 ``pypy/pypy`` and documentation files in ``pypy/pypy/doc``.
 We try to ensure that the tip is always stable, but it might
 occasionally be broken.  You may want to check out `our nightly tests:`_
-find a revision (12-chars alphanumeric string, e.g. "963e808156b3") 
+find a revision (12-chars alphanumeric string, e.g. "963e808156b3")
 that passed at least the
 ``{linux32}`` tests (corresponding to a ``+`` sign on the
 line ``success``) and then, in your cloned repository, switch to this revision
@@ -159,24 +159,24 @@
 Understanding PyPy's architecture
 ---------------------------------
 
-For in-depth information about architecture and coding documentation 
-head over to the `documentation section`_ where you'll find lots of 
-interesting information.  Additionally, in true hacker spirit, you 
-may just `start reading sources`_ . 
+For in-depth information about architecture and coding documentation
+head over to the `documentation section`_ where you'll find lots of
+interesting information.  Additionally, in true hacker spirit, you
+may just `start reading sources`_ .
 
 .. _`documentation section`: index.html#project-documentation
 .. _`start reading sources`: getting-started-dev.html#start-reading-sources
 
-Filing bugs or feature requests 
+Filing bugs or feature requests
 -------------------------------
 
 You may file `bug reports`_ on our issue tracker which is
-also accessible through the 'issues' top menu of 
-the PyPy website.  `Using the development tracker`_ has 
-more detailed information on specific features of the tracker. 
+also accessible through the 'issues' top menu of
+the PyPy website.  `Using the development tracker`_ has
+more detailed information on specific features of the tracker.
 
 .. _`Using the development tracker`: coding-guide.html#using-development-tracker
-.. _bug reports:            https://codespeak.net/issue/pypy-dev/
+.. _bug reports: https://bugs.pypy.org/
 
 
 .. include:: _ref.txt


More information about the pypy-commit mailing list