comparison doc/upgrading.txt @ 1227:92d8e1aad2e9

added mention of the new "minimal" template... ...and cleaned up Admin links in classic
author Richard Jones <richard@users.sourceforge.net>
date Thu, 26 Sep 2002 04:19:53 +0000
parents fa7df238e2d4
children 7733d5b96ef6
comparison
equal deleted inserted replaced
1226:0ef27b438916 1227:92d8e1aad2e9
16 Unfortunately, this means all your current templates are useless. Hopefully 16 Unfortunately, this means all your current templates are useless. Hopefully
17 the new documentation and examples will be enough to help you make the 17 the new documentation and examples will be enough to help you make the
18 transition. Please don't hesitate to ask on roundup-users for help (or 18 transition. Please don't hesitate to ask on roundup-users for help (or
19 complete conversions if you're completely stuck)! 19 complete conversions if you're completely stuck)!
20 2. The database backed got a lot more flexible, allowing Metakit and SQL 20 2. The database backed got a lot more flexible, allowing Metakit and SQL
21 databases! The only SQL database implemented at present is gadfly, but 21 databases! The only decent SQL database implemented at present is sqlite,
22 others shouldn't be a whole lot more work. 22 but others shouldn't be a whole lot more work.
23 3. A brand new, highly flexible and much more robust security system including 23 3. A brand new, highly flexible and much more robust security system including
24 a system of Permissions, Roles and Role assignments to users. You may now 24 a system of Permissions, Roles and Role assignments to users. You may now
25 define your own Permissions that may be checked in CGI transactions. 25 define your own Permissions that may be checked in CGI transactions.
26 4. Journalling has been made less storage-hungry, so has been turned on 26 4. Journalling has been made less storage-hungry, so has been turned on
27 by default *except* for author, recipient and nosy link/unlink events. You 27 by default *except* for author, recipient and nosy link/unlink events. You
175 date=Date(), summary=String(), 175 date=Date(), summary=String(),
176 files=Multilink("file"), 176 files=Multilink("file"),
177 messageid=String(), inreplyto=String()) 177 messageid=String(), inreplyto=String())
178 178
179 Nosy list link event journalling is actually turned off by default now. If you 179 Nosy list link event journalling is actually turned off by default now. If you
180 want to turn it onn, change to your issue class' nosy list, change its 180 want to turn it on, change to your issue class' nosy list, change its
181 definition from:: 181 definition from::
182 182
183 issue = IssueClass(db, "issue", 183 issue = IssueClass(db, "issue",
184 assignedto=Link("user"), topic=Multilink("keyword"), 184 assignedto=Link("user"), topic=Multilink("keyword"),
185 priority=Link("priority"), status=Link("status")) 185 priority=Link("priority"), status=Link("status"))

Roundup Issue Tracker: http://roundup-tracker.org/