2012-06-01 17:27:33 +00:00
|
|
|
#!/bin/bash
|
2012-04-30 11:23:03 +00:00
|
|
|
|
2012-11-16 21:40:59 +00:00
|
|
|
# build TiddlyWiki5 for five.tiddlywiki.com
|
|
|
|
|
|
|
|
# First, index.html: the main file, including content
|
2012-04-30 11:23:03 +00:00
|
|
|
|
2012-11-16 21:27:53 +00:00
|
|
|
pushd editions/tw5.com > /dev/null
|
2012-05-05 22:32:04 +00:00
|
|
|
|
2013-01-21 15:49:10 +00:00
|
|
|
if [ -z "$JERMOLENE_HOME" ]; then
|
|
|
|
JERMOLENE_HOME=../../../jermolene.github.com
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d "$JERMOLENE_HOME" ]; then
|
|
|
|
echo 'A valid JERMOLENE_HOME directory must be set'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Using JERMOLENE_HOME as [$JERMOLENE_HOME]"
|
|
|
|
echo "five.tiddlywiki.com" > $JERMOLENE_HOME/CNAME
|
2012-06-21 11:53:56 +00:00
|
|
|
|
2012-11-29 21:30:53 +00:00
|
|
|
node ../../tiddlywiki.js \
|
2012-05-05 22:32:04 +00:00
|
|
|
--verbose \
|
2012-09-02 20:00:24 +00:00
|
|
|
--password password \
|
2012-11-16 21:27:53 +00:00
|
|
|
--savetiddler ReadMe ../../readme.md text/html \
|
2013-01-21 15:49:10 +00:00
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html $JERMOLENE_HOME/index.html text/plain \
|
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.encrypted.template.html $JERMOLENE_HOME/encrypted.html text/plain \
|
|
|
|
--savetiddler $:/core/templates/static.template.html $JERMOLENE_HOME/static.html text/plain \
|
2012-05-05 22:32:04 +00:00
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
popd > /dev/null
|
2012-11-16 21:40:59 +00:00
|
|
|
|
|
|
|
# Second, empty.html: empty wiki for reuse
|
|
|
|
|
|
|
|
pushd editions/empty > /dev/null
|
|
|
|
|
2012-11-29 21:30:53 +00:00
|
|
|
node ../../tiddlywiki.js \
|
2012-11-16 21:40:59 +00:00
|
|
|
--verbose \
|
|
|
|
--password password \
|
2013-01-21 15:49:10 +00:00
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html $JERMOLENE_HOME/empty.html text/plain \
|
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.encrypted.template.html $JERMOLENE_HOME/empty_encrypted.html text/plain \
|
2012-11-16 21:40:59 +00:00
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
popd > /dev/null
|