Hi Lukas,
you can use all special wiki characters by escaping
them: that is you
escape them by putting a back-slash in front like \[, \*, \!, ... For <
and > this is slightly different, as they are used to build the xhtml
and are preserved by SmallWiki. You have to write them using
html-syntax: > and <
Thanx. This all worked like a charm. But not before we finally migrated to
the latest dev version from the cincom public repository.
The migration when fine, except for three problems. Two solved, one open.
* Folders didn't have a document. To get it to work I made the getter look
like:
document
document isNil ifTrue: [^self defaultDocument].
^document
* The users had been given instances of Role as roles. This class seems to
be abstract, so we replaced the roles with appropiate ones. Problem seems
to be solved.
* The last and still not solved problem is that links do not work in MSIE.
The do work in NetScape and FireFox. The problem is that IE doens't see
the links are relative, eg. 'Changes' links to
'http:///?action=RecentChanges' in stead of
http://somehost:8080/?action=RecentChanges.
Any idea what this might be?
Cheers,
Adriaan.