summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIan Bicking <ianb@colorstudy.com>2010-03-31 13:46:27 -0500
committerIan Bicking <ianb@colorstudy.com>2010-03-31 13:46:27 -0500
commite11fe05afc721eb83585739054b8098dc87d7fc8 (patch)
tree68de15a31f0d2c83122e17be78f193b941f19475 /docs
parent188288d57c67e97a910850194661c4bdaf8b98d1 (diff)
downloadpaste-e11fe05afc721eb83585739054b8098dc87d7fc8.tar.gz
remove references to svn
Diffstat (limited to 'docs')
-rw-r--r--docs/community/repository.txt11
-rw-r--r--docs/download/index.txt21
-rw-r--r--docs/news.txt14
3 files changed, 17 insertions, 29 deletions
diff --git a/docs/community/repository.txt b/docs/community/repository.txt
index 344b017..b8f3700 100644
--- a/docs/community/repository.txt
+++ b/docs/community/repository.txt
@@ -1,13 +1,10 @@
Repository
==========
-Paste is kept in a `Subversion <http://subversion.tigris.org/>`_
-repository at http://svn.pythonpaste.org/Paste
+Paste is kept in a Mercurial (hg) repository at
+http://bitbucket.org/ianb/paste
-If you are using a command-line Subversion client, you can check
+If you are using a command-line Mercurial client, you can check
it out like::
- svn co http://svn.pythonpaste.org/Paste/trunk Paste
-
-If you are on Windows you may want to use `TortoiseSVN
-<http://tortoisesvn.tigris.org/>`_.
+ hg clone http://bitbucket.org/ianb/paste
diff --git a/docs/download/index.txt b/docs/download/index.txt
index 71caa51..674497e 100644
--- a/docs/download/index.txt
+++ b/docs/download/index.txt
@@ -15,22 +15,17 @@ are always located on the Cheese Shop pages (listed below).
* `Paste WebKit <http://cheeseshop.python.org/pypi/PasteWebKit>`_
* `Wareweb <http://cheeseshop.python.org/pypi/Wareweb>`_
-All the packages are available in the Subversion repository rooted at
-http://svn.pythonpaste.org/Paste/
+All the packages are available in the Mercurial repositories rooted in
+http://bitbucket.org/ianb/
-* http://svn.pythonpaste.org/Paste/trunk
-* http://svn.pythonpaste.org/Paste/Script/trunk
-* http://svn.pythonpaste.org/Paste/Deploy/trunk
-* http://svn.pythonpaste.org/Paste/WebKit/trunk
-* http://svn.pythonpaste.org/Paste/Wareweb/trunk
+* http://bitbucket.org/ianb/paste
+* http://bitbucket.org/ianb/pastescript
+* http://bitbucket.org/ianb/pastedeploy
+* http://bitbucket.org/ianb/webob
* ... and others
Use::
- svn co http://svn.pythonpaste.org/Paste/trunk Paste
+ hg clone http://bitbucket.org/ianb/paste
-to check out a working copy of Paste. You can also use::
-
- easy_install Paste==dev
-
-to install the trunk version of Paste (or the other packages).
+to check out a working copy of Paste.
diff --git a/docs/news.txt b/docs/news.txt
index 1aa885e..e9ec9df 100644
--- a/docs/news.txt
+++ b/docs/news.txt
@@ -310,7 +310,7 @@ News
* Added ``paste.util.import_string.try_import_module``, which imports
modules and catches ``ImportError``, but only if it's an error
importing the specific module, not an uncaught ``ImportError`` in
- the module being imported.
+ the module being imported.
1.2.1
-----
@@ -363,7 +363,7 @@ In paste.wsgiwrappers
* ``paste.wsgiwrappers.WSGIRequest.defaults`` now accepts a new key:
- ``language``:
+ ``language``:
The i18n language that should be used as the fallback should
a translation not occur in a language file. See docs for
details.
@@ -538,9 +538,7 @@ In paste.httpserver
* Added another redirector type to ``paste.recursive``,
``environ['paste.recursive.include_app_iter']`` which gives access
- to the original app_iter (useful for tranfsering unserialized data
- in internal WSGI requests, as in `WSGIRemote
- <http://svn.pythonpaste.org/Paste/WSGIRemote/trunk>`_
+ to the original app_iter.
* Bug with ``wsgilib.catch_errors`` and app_iters with no ``close()``
method.
@@ -654,7 +652,7 @@ In paste.httpserver
``paste.util.multidict``, particularly in ``paste.wsgiwrappers``
where ``request.GET`` returns a new style of dictionary interface.
-* Be more careful in ``paste.request.parse_formvars`` not to let
+* Be more careful in ``paste.request.parse_formvars`` not to let
the ``cgi`` module read from ``wsgi.input`` when there are no
parsable variables in the input (based on ``CONTENT_TYPE``).
@@ -684,7 +682,7 @@ In paste.httpserver
0.9.1
-----
-* A fix for paste.errordocument, when doing an internal redirect from
+* A fix for paste.errordocument, when doing an internal redirect from
a POST request (the request is rewritten as a GET request)
0.9
@@ -942,5 +940,3 @@ In paste.httpserver
* Cleaned up use of ``exc_info`` argument in ``start_response`` calls
(both accepting and producing), in a variety of places.
-
-