diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2010-08-10 10:16:31 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2010-08-10 11:49:35 +0800 |
commit | ec250986948f1fef86e6a72ce9a8e0ed332ef057 (patch) | |
tree | 61f5ee58ff67f0290a4d3333761d1ca7e6433d32 /docs/INSTALL | |
parent | 50c10beddb95719e5dc8acee4f1ab13f8e858b5c (diff) | |
download | patchwork-ec250986948f1fef86e6a72ce9a8e0ed332ef057.tar patchwork-ec250986948f1fef86e6a72ce9a8e0ed332ef057.tar.gz |
docs: update INSTALL for commonly-available packages
We probably don't need to download django or django-registration
anymore.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'docs/INSTALL')
-rw-r--r-- | docs/INSTALL | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/INSTALL b/docs/INSTALL index 803c7ff..cf6544f 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -51,21 +51,23 @@ in brackets): mkdir -p lib/packages lib/python - At the time of release, patchwork depends on django version 1.0. - However, most distros don't provide 1.0 yet. If yours does, then you - can skip this step. Otherwise, do a: + At the time of release, patchwork depends on django version 1.0 or + later. Your distro probably provides this. If not, do a: cd lib/packages - svn checkout http://code.djangoproject.com/svn/django/tags/releases/1.0 + svn checkout http://code.djangoproject.com/svn/django/tags/releases/1.2 cd ../python ln -s ../packages/django/django ./django We also use the django-registration infrastructure from - http://bitbucket.org/ubernostrum/django-registration/ + http://bitbucket.org/ubernostrum/django-registration/. Your distro + may provide the django-registration python module (in Ubuntu/Debian it's + called 'python-django-registration'). If not, download the module + and symlink it to lib/python/ : cd lib/packages/ hg clone http://bitbucket.org/ubernostrum/django-registration/ - cd ../../apps + cd ../python ln -s ../lib/packages/django-registration/registration ./registration We also use some Javascript libraries: |