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
|
|
|
|
|
2013-01-23 12:37:10 +00:00
|
|
|
# Set up the build output directory
|
|
|
|
|
|
|
|
if [ -z "$TW5_BUILD_OUTPUT" ]; then
|
2013-02-09 17:08:19 +00:00
|
|
|
TW5_BUILD_OUTPUT=../jermolene.github.com
|
2013-01-21 15:49:10 +00:00
|
|
|
fi
|
|
|
|
|
2013-01-23 12:37:10 +00:00
|
|
|
if [ ! -d "$TW5_BUILD_OUTPUT" ]; then
|
|
|
|
echo 'A valid TW5_BUILD_OUTPUT directory must be set'
|
2013-01-21 15:49:10 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-01-23 12:37:10 +00:00
|
|
|
echo "Using TW5_BUILD_OUTPUT as [$TW5_BUILD_OUTPUT]"
|
|
|
|
|
|
|
|
# Make the CNAME file that GitHub Pages requires
|
|
|
|
|
|
|
|
echo "five.tiddlywiki.com" > $TW5_BUILD_OUTPUT/CNAME
|
|
|
|
|
2013-03-04 18:15:54 +00:00
|
|
|
# Create the `static` directory if necessary
|
|
|
|
|
|
|
|
mkdir -p $TW5_BUILD_OUTPUT/static
|
|
|
|
|
2013-01-31 10:20:13 +00:00
|
|
|
# First,
|
|
|
|
# readme.md: the readme file for GitHub
|
|
|
|
# index.html: the main file, including content
|
|
|
|
# static.html: the static version of the default tiddlers
|
2012-06-21 11:53:56 +00:00
|
|
|
|
2013-02-09 17:08:19 +00:00
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/tw5.com \
|
2012-05-05 22:32:04 +00:00
|
|
|
--verbose \
|
2013-02-09 17:08:19 +00:00
|
|
|
--savetiddler ReadMe ./readme.md text/html \
|
2013-01-23 12:37:10 +00:00
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/index.html text/plain \
|
|
|
|
--savetiddler $:/core/templates/static.template.html $TW5_BUILD_OUTPUT/static.html text/plain \
|
2013-03-04 19:14:47 +00:00
|
|
|
--savetiddler $:/core/templates/static.template.css $TW5_BUILD_OUTPUT/static/static.css text/plain \
|
2013-03-04 18:15:54 +00:00
|
|
|
--savetiddlers [!is[shadow]] $:/core/templates/static.tiddler.html $TW5_BUILD_OUTPUT/static text/plain \
|
2012-05-05 22:32:04 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2013-01-31 10:20:13 +00:00
|
|
|
# Second, encrypted.html: a version of the main file encrypted with the password "password"
|
|
|
|
|
2013-02-09 17:08:19 +00:00
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/tw5.com \
|
2013-01-31 10:20:13 +00:00
|
|
|
--verbose \
|
|
|
|
--password password \
|
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/encrypted.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# Third, empty.html: empty wiki for reuse
|
2012-11-16 21:40:59 +00:00
|
|
|
|
2013-02-09 17:08:19 +00:00
|
|
|
node ./tiddlywiki.js \
|
2013-03-02 16:18:39 +00:00
|
|
|
./editions/empty \
|
2012-11-16 21:40:59 +00:00
|
|
|
--verbose \
|
2013-01-23 12:37:10 +00:00
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/empty.html text/plain \
|
2012-11-16 21:40:59 +00:00
|
|
|
|| exit 1
|
|
|
|
|