# HG changeset patch # User Paul Boddie # Date 1226713251 -3600 # Node ID 652b8fee468f3e340b0985f9fe74bcc7be6200bb # Parent e0d7a8137e9848ea7e1367be5c50bb5cd58b2dd5 Modified scripts and added some troubleshooting notes. diff -r e0d7a8137e98 -r 652b8fee468f README.txt --- a/README.txt Sat Nov 01 20:03:12 2008 +0100 +++ b/README.txt Sat Nov 15 02:40:51 2008 +0100 @@ -51,6 +51,16 @@ This ensures that the styles are made available to the browser. +Troubleshooting +--------------- + +See here for a bug related to category recognition: + +http://moinmo.in/MoinMoinBugs/1.7TemplatesNotAppearing + +This affects installations where migrations between versions have occurred, +yet the Wiki configuration retains old regular expression details. + Contact, Copyright and Licence Information ------------------------------------------ diff -r e0d7a8137e98 -r 652b8fee468f instmacros --- a/instmacros Sat Nov 01 20:03:12 2008 +0100 +++ b/instmacros Sat Nov 15 02:40:51 2008 +0100 @@ -2,10 +2,12 @@ if [[ ! $1 ]] ; then echo "Please specify a directory such as ../mysite or /tmp/mysite." - echo "This should be the root of your Wiki installation and contain the wiki" + echo "This should be the root of your Wiki installation and contain the data" echo "directory." + echo + echo "You may wish to uncomment and modify the chown command in this script." exit fi -cp macros/*.py $1/wiki/data/plugin/macro/ -chown www-data: $1/wiki/data/plugin/macro/*.py +cp macros/*.py $1/data/plugin/macro/ +#chown www-data: $1/data/plugin/macro/*.py diff -r e0d7a8137e98 -r 652b8fee468f insttheme --- a/insttheme Sat Nov 01 20:03:12 2008 +0100 +++ b/insttheme Sat Nov 15 02:40:51 2008 +0100 @@ -4,10 +4,17 @@ echo "Please specify a directory such as ../mywiki or /tmp/mywiki along" echo "with the name of the theme into which the CategoryMenu styles will be" echo "copied." - echo "The specified directory should be the root of your Wiki installation" - echo "and contain the wiki directory." + echo + echo "The specified directory should be the root of your Wiki resources" + echo "and contain the different theme resources directories, such as classic," + echo "modern, hypermodern, and so on, each containing css and img directories." + echo + echo "The specified directory may be called htdocs, but sometimes it is called" + echo "something like moin_static160." + echo + echo "You may wish to uncomment and modify the chown command in this script." exit fi -cp css/*.css $1/htdocs/$2/css/ -chown www-data: $1/htdocs/$2/css/ +cp css/*.css $1/$2/css/ +#chown www-data: $1/htdocs/$2/css/