|
After installing the latest wikit.kit, creating a new page isn't possible. After
creating and saving, no 'reference'-Link occurs at the bottom. The link to the
new page on the originating page isn't active. Klicking again on it, the new empty
page again appears. Saving it the 2nd time behaves normal, it seems. 2 entries
appear in the new pages section. There must be some changes in the reference-handling,
I think.....
[email protected] |
|
I found one problem with cache.tcl; It needs to update titleCache when new
numbers are created by "LookupPage". I'm just learning, this (Star|Meta|...)kit stuff
is very neat, by the way. Thanks. - NTM
$ diff -u cache.tcl.old wikit.vfs/lib/wikit/cache.tcl
--- cache.tcl.old 2004-07-17 03:34:13.578125000 -0500
+++ wikit.vfs/lib/wikit/cache.tcl 2004-07-17 03:34:56.671875000 -0500
@@ -51,6 +51,7 @@
if {$n == ""} {
set n [mk::view size $db.pages]
mk::set $db.pages!$n name $name
+ set titleCache($db,$lcname) $n
DoCommit $db
} |