Skip to content

Commit fb2553f

Browse files
committed
Merge pull request brosner#2 from misli/updated_overview
update overview.txt a little
2 parents ba2cb43 + 31bbaa1 commit fb2553f

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

docs/overview.txt

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Installing an official release
1919
------------------------------
2020

2121
Official releases are made available from
22-
http://code.google.com/p/django-tagging/
22+
https://pypi.python.org/pypi/django-tagging/
2323

2424
Source distribution
2525
~~~~~~~~~~~~~~~~~~~
@@ -45,11 +45,10 @@ Installing the development version
4545

4646
Alternatively, if you'd like to update Django Tagging occasionally to pick
4747
up the latest bug fixes and enhancements before they make it into an
48-
official release, perform a `Subversion`_ checkout instead. The following
49-
command will check the application's development branch out to an
50-
``tagging-trunk`` directory::
48+
official release, clone the git repository instead. The following
49+
command will clone the development branch to ``django-tagging`` directory::
5150

52-
svn checkout http://django-tagging.googlecode.com/svn/trunk/ tagging-trunk
51+
git clone [email protected]:Fantomas42/django-tagging.git
5352

5453
Add the resulting folder to your `PYTHONPATH`_ or symlink (`junction`_,
5554
if you're on Windows) the ``tagging`` directory inside it into a
@@ -61,25 +60,22 @@ opening a Python interpreter and entering the following commands::
6160

6261
>>> import tagging
6362
>>> tagging.VERSION
64-
(0, 3, 'pre')
63+
(0, 3, 4, 'final', 0)
6564

6665
When you want to update your copy of the Django Tagging source code, run
67-
the command ``svn update`` from within the ``tagging-trunk`` directory.
66+
the command ``git pull`` from within the ``django-tagging`` directory.
6867

6968
.. caution::
7069

7170
The development version may contain bugs which are not present in the
7271
release version and introduce backwards-incompatible changes.
7372

74-
If you're tracking trunk, keep an eye on the `CHANGELOG`_ and the
75-
`backwards-incompatible changes wiki page`_ before you update your
76-
copy of the source code.
73+
If you're tracking git, keep an eye on the `CHANGELOG`_
74+
before you update your copy of the source code.
7775

78-
.. _`Subversion`: http://subversion.tigris.org
7976
.. _`PYTHONPATH`: http://www.python.org/doc/2.5.2/tut/node8.html#SECTION008120000000000000000
8077
.. _`junction`: http://www.microsoft.com/technet/sysinternals/FileAndDisk/Junction.mspx
81-
.. _`CHANGELOG`: http://django-tagging.googlecode.com/svn/trunk/CHANGELOG.txt
82-
.. _`backwards-incompatible changes wiki page`: http://code.google.com/p/django-tagging/wiki/BackwardsIncompatibleChanges
78+
.. _`CHANGELOG`: https://github.com/Fantomas42/django-tagging/blob/develop/CHANGELOG.txt
8379

8480
Using Django Tagging in your applications
8581
-----------------------------------------

0 commit comments

Comments
 (0)