netfrag.org . TWiki . TWikiUpgradeGuide |
SiteAlias:Page
; rules are defined in InterWikis. (Get more Plugins from the TWiki:Plugins web.)
%TOC%
variable generates a hierarchical table of contents from topic headings: <HI>...<H6>. Set depth.
lib/TWiki/Plugins
directory tree to for the main configuration file, library, internal modules and the new Plugin modules. Pre-existing files were formerly in bin
.
bin
, pub
, data
, templates
)
mkdir -p ~/tmp/
cd ~/tmp
unzip ~/TWiki20001201.zip
twiki
):
mv ~/tmp/TWiki*.html $TWIKIROOT
mv ~/tmp/index.html $TWIKIROOT
mv ~/tmp/readme.txt $TWIKIROOT
mv ~/tmp/license.txt $TWIKIROOT
twiki/bin
directory: ( twiki/bin
)
mv $TWIKIROOT/bin $TWIKIROOT/bin.old
twiki/bin
location, i.e.
mv ~/tmp/bin $TWIKIROOT/bin
wikicfg.pm
into the new wikicfg.pm
. We suggest using diff -c
to compare the two files if you have made heavy changes to the file:
diff -c $TWIKIROOT/bin.old/wikicfg.pm $TWIKIROOT/bin/wikicfg.pm | less
mv $TWIKIROOT/bin.old/somescript $TWIKIROOT/bin/
twiki/templates
directory: ( twiki/templates
)
mv $TWIKIROOT/templates $TWIKIROOT/templates.old
twiki/templates
location:
mv ~/tmp/templates $TWIKIROOT/templates
=<p />
tag added.
twikicatitems.tmpl
in each web that used a Category Table.
notedited.tmpl
template, create a WebTopicEditTemplate to conform with the new SelectableNewTopicTemplates feature. Retired notedited.tmpl
, notext.tmpl
and notwiki.tmpl
templates.
twiki/pub/TWiki
directory to your installation: ( twiki/pub
)
mv ~/tmp/pub/TWiki $TWIKIROOT/pub/
twiki/pub/twikilogo*
image files to your installation:
mv ~/tmp/pub/twikilogo* $TWIKIROOT/pub
TWiki
directory and its subdirectory and files. The files must be writable by the CGI scripts (usually user "nobody").
twiki/data/TWiki
directory to your installation: ( twiki/data
)
mv ~/tmp/data/TWiki $TWIKIROOT/data/
TWiki
directory and its files. The files must be writable by the cgi-scripts (usually user "nobody")
twiki/data/Test
directory to your installation,
mv ~/tmp/data/Test $TWIKIROOT/data/
TWikiRegistration
moved from TWiki.Main to TWiki.TWiki. In case you customized TWikiRegistration
, merge your changes back into TWiki.TWikiRegistration
, then delete $TWIKIROOT/data/Main/TWikiRegistration*
.
TWikiPreferences
into TWiki.TWikiPreferences
.
WebPreferences
topics in all your webs into WebPreferences
WebPreferences
topics in all your webs to reflect the following:
WEBTOPICLIST
should use WebChanges
for "Changes"
, and WebIndex
for "Index"
:
| <a href="WebChanges">Changes</a>
| <a href="WebIndex">Index</a>
web="all"
search: Set this new preference
Set NOSEARCHALL = on
WebSearch
topic has considerable changes. Copy the one from TWiki.TWiki
into all webs, or merge them if you made changes. To copy, do an edit-copy-edit-paste operation.
WebHome
topics in all your webs to reflect these changes:
.htaccess
, add the rename
script
* You may want to add [ALLOW|DENY][WEB|TOPIC]RENAME
in some places, like TWikiPreferences, WebPreferences and TWikiUsers
%GMTIME{"..."}%
and %SERVERTIME{"..."}%
variables. Format is now "$hour:$min"
instead of "hour:min"
. More in TWikiVariables.
| *bold* |
cells, | center aligned |
and | right aligned |
cells, span multiple columns using | empty cells |||
. More in TextFormattingRules.
Net::SMTP
module instead of sendmail
if installed.
<verbatim> ... </verbatim>
tags instead of <pre> ... </pre>
tags where appropriate. More in TextFormattingRules.
%STARTINCLUDE%
and %STOPINCLUDE%
variables to control what gets included of a topic. More in TWikiVariables.
$attachAsciiPath
in TWiki.cfg
defines which file types are stored in ASCII, otherwise, binary format is used. This means that the RCS version used should support binary files.
edit.new.tmpl
has been removed and replaced by template topics in the new TWiki Template System )
warning.txt
file can appear in the data
directory. It may contain diagnostic info identifying problems that need fixing. This file could get fairly large if you have a lot of problems your site - you can delete it at any time.
----- Revision r1.14 - 08 Sep 2001 - 23:03 - MikeMannix?
|