> 1) Unwanted space in titles.
>
> This is input as ISSHO-J, but appears as I SSHO-J.
Yes. The wikiword splitter uses a bunch of (anglo-centric) heuristics
and is not perfect. Leading A's or I's are assumed to be distinct
words, so are split. (This is to handle things like IAteNewYork.)
The splitting is performed in the function split_pagename() in
lib/stdlib.php. This patch makes the splitting slightly less
aggressive, and will fix the particular example you site:
http://cvs.sf.net/cgi-bin/viewcvs.cgi/phpwiki/phpwiki/lib/stdlib.php.diff?r1=1.72&r2=1.73
You could disable all splitting by adding a line
return $page;
at the top of the function body of split_pagename().
> 2) PageHistory - Can't diff between two versions.
> http://www.issho.org/modules.php?op=modload&name=phpWiki&file=index&pagename=PageHistory&page=WikipnRss
That looks to be a PN specific problem. (The wrong URL's
are being generated.) Someone who knows the PN code will
have to look at that.
> I notice that the phpWiki site has a different look.
(Actually, the main phpwiki wiki is the older code.
The demo and test wikis are running off of recent code.)
|