summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f1ad79a)
raw | patch | inline | side by side (parent: f1ad79a)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 15 Mar 2002 01:20:41 +0000 (01:20 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 15 Mar 2002 01:20:41 +0000 (01:20 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@674 57a73879-2fb5-44c3-a270-3262357dd7e2
MIGRATION.txt | patch | blob | history |
diff --git a/MIGRATION.txt b/MIGRATION.txt
index 396ade182b9144780d400b9c7677574bc0b8727e..a38fe79338c56f96b0e93d18f0b0a217fcf5f6f7 100644 (file)
--- a/MIGRATION.txt
+++ b/MIGRATION.txt
ANONYMOUS_REGISTER_MAIL rather than overloading ANONYMOUS_REGISTER. If the
variable doesn't exist, then ANONYMOUS_REGISTER is tested as before.
+Configuring the links in the web header is now easier too. The following
+variables have been added to the classic instance_config.py:
+
+ HEADER_INDEX_LINKS - defines the "index" links to be made available
+ HEADER_ADD_LINKS - defines the "add" links
+ DEFAULT_INDEX - specifies the index view for DEFAULT
+ UNASSIGNED_INDEX - specifies the index view for UNASSIGNED
+ USER_INDEX - specifies the index view for USER
+
+See the <roundup source>/roundup/templates/classic/instance_config.py for more
+information - including how the variables are to be set up. Most users will
+just be able to copy the variables from the source to their instance home. If
+you've modified the header by changing the source of the interfaces.py file in
+the instance home, you'll need to remove that customisation and move it into
+the appropriate variables in instance_config.py.
+
+The extended schema has similar variables added too - see the source for more
+info.
+
+
Alternate E-Mail Addresses
--------------------------
to their primary address.
If you have not edited the dbinit.py file in your instance home directory,
-you may simply copy the new dbinit.py file from the core code. If you used
+YOU MAY Simply copy the new dbinit.py file from the core code. If you used
the classic schema, the interfaces file is in:
<roundup source>/roundup/templates/classic/dbinit.py
user = Class(db, "msg",
username=String(), password=Password(),
- address=String(), realname=String(),
- phone=String(), organisation=String(),
- alternate_addresses=String())
+ address=String(), realname=String(),
+ phone=String(), organisation=String(),
+ alternate_addresses=String())
You will also want to add the property to the user's details page. The
template for this is the "user.item" file in your instance home "html"