summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 352d5c6)
raw | patch | inline | side by side (parent: 352d5c6)
author | grubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 8 Jan 2002 12:10:22 +0000 (12:10 +0000) | ||
committer | grubert <grubert@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 8 Jan 2002 12:10:22 +0000 (12:10 +0000) |
Fix MIGRATION 0.3 to 0.4 select_db.py is not mentioned.
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@515 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@515 57a73879-2fb5-44c3-a270-3262357dd7e2
INSTALL.txt | patch | blob | history | |
MIGRATION.txt | patch | blob | history |
diff --git a/INSTALL.txt b/INSTALL.txt
index 2b4783c9122bceec07a2c87325e09de83073b08e..b57c15727d8a5c144e7519b7633b29f16d140953 100644 (file)
--- a/INSTALL.txt
+++ b/INSTALL.txt
Installation
===============
These instructions work on redhat 6.2 and mandrake 8.0 - with the caveat
-that these systems don't come with python 2.0 or newer installed, so you'll
+that these systems don't come with python 2.1.1 or newer installed, so you'll
have to upgrade python before this stuff will work.
Prerequisites
-------------
-Either:
- . Python 2.0 with pydoc installed. See http://www.lfw.org/ for pydoc.
-or
- . Python 2.1
+Python 2.1.1 or newer.
+
+Note: Python 2.1.1 shipped with SuSE7.3 might miss module _weakref.
You will need either the anydbm or bsddb module.
Run "python -c 'import test;test.go()'" and make sure there's no errors.
If there are errors, please let us know!
-
Installing the Software
-----------------------
diff --git a/MIGRATION.txt b/MIGRATION.txt
index c27230a151d7e6fe9217e4912023d4722845b3d9..1945ea26f464319f703d298417acdee47fde1da6 100644 (file)
--- a/MIGRATION.txt
+++ b/MIGRATION.txt
If you used the extended schema, the file is in:
- <roundup source>/roundup/templates/extended/dbinit.pybinit.py needs updating from the original.
+ <roundup source>/roundup/templates/extended/dbinit.py
If you have modified your dbinit.py file, you may use encoded passwords:
files=Multilink("file"),
messageid=String(), inreplyto=String())
+a file select_db.py is needed in the instance directory, containing probably:
+---
+# WARNING: DO NOT EDIT THIS FILE!!!
+from roundup.backends.back_anydbm import Database
+---
+or one could create a new instance and take the file from there.
Migrating from 0.2.x to 0.3.x