TiddlyWiki5/bin/bld.sh

119 lines
2.7 KiB
Bash
Raw Normal View History

2012-06-01 17:27:33 +00:00
#!/bin/bash
# build TiddlyWiki5 for tiddlywiki.com
# 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
fi
if [ ! -d "$TW5_BUILD_OUTPUT" ]; then
echo 'A valid TW5_BUILD_OUTPUT environment variable must be set'
exit 1
fi
echo "Using TW5_BUILD_OUTPUT as [$TW5_BUILD_OUTPUT]"
# Make the CNAME file that GitHub Pages requires
echo "tiddlywiki.com" > $TW5_BUILD_OUTPUT/CNAME
# Create the `static` directories if necessary
mkdir -p $TW5_BUILD_OUTPUT/static
# Delete any existing content
rm $TW5_BUILD_OUTPUT/static/*
# The tw5.com wiki
2013-01-31 10:20:13 +00:00
# index.html: the main file, including content
# empty.html: the main file, excluding content
2013-01-31 10:20:13 +00:00
# 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 \
2014-05-16 13:53:16 +00:00
--output . \
2014-06-24 09:39:45 +00:00
--build readmes \
2014-05-16 13:53:16 +00:00
--output $TW5_BUILD_OUTPUT \
2014-06-24 09:39:45 +00:00
--build favicon empty static index \
2012-05-05 22:32:04 +00:00
|| exit 1
# upgrade.html: custom edition for handling upgrades
node ./tiddlywiki.js \
./editions/upgrade \
--verbose \
--output $TW5_BUILD_OUTPUT \
--build upgrade \
|| exit 1
# encrypted.html: a version of the main file encrypted with the password "password"
2013-01-31 10:20:13 +00:00
2013-02-09 17:08:19 +00:00
node ./tiddlywiki.js \
./editions/tw5.com \
2013-01-31 10:20:13 +00:00
--verbose \
--output $TW5_BUILD_OUTPUT \
2014-06-24 09:39:45 +00:00
--build encrypted \
2013-01-31 10:20:13 +00:00
|| exit 1
# tahoelafs.html: empty wiki with plugin for Tahoe-LAFS
2013-04-26 21:18:46 +00:00
node ./tiddlywiki.js \
./editions/tahoelafs \
--verbose \
--output $TW5_BUILD_OUTPUT \
--rendertiddler $:/core/save/all tahoelafs.html text/plain \
2013-04-26 21:18:46 +00:00
|| exit 1
# d3demo.html: wiki to demo d3 plugin
node ./tiddlywiki.js \
./editions/d3demo \
--verbose \
--output $TW5_BUILD_OUTPUT \
--rendertiddler $:/core/save/all d3demo.html text/plain \
|| exit 1
# codemirrordemo.html: wiki to demo codemirror plugin
2013-10-28 15:22:31 +00:00
node ./tiddlywiki.js \
./editions/codemirrordemo \
--verbose \
--output $TW5_BUILD_OUTPUT \
--rendertiddler $:/core/save/all codemirrordemo.html text/plain \
2013-10-28 15:22:31 +00:00
|| exit 1
# markdowndemo.html: wiki to demo markdown plugin
node ./tiddlywiki.js \
./editions/markdowndemo \
--verbose \
--output $TW5_BUILD_OUTPUT \
--rendertiddler $:/core/save/all markdowndemo.html text/plain \
|| exit 1
# classicparserdemo.html: wiki to demo classicparser plugin
node ./tiddlywiki.js \
./editions/classicparserdemo \
--verbose \
--output $TW5_BUILD_OUTPUT \
--rendertiddler $:/core/save/all classicparserdemo.html text/plain \
|| exit 1
# highlightdemo.html: wiki to demo highlight plugin
node ./tiddlywiki.js \
./editions/highlightdemo \
--verbose \
--output $TW5_BUILD_OUTPUT \
--rendertiddler $:/core/save/all highlightdemo.html text/plain \
|| exit 1
# Run the test edition to run the Node.js tests and to generate test.html for tests in the browser
./bin/test.sh