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
|
2013-03-18 12:25:11 +00:00
|
|
|
echo 'A valid TW5_BUILD_OUTPUT environment variable 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-11-27 10:27:57 +00:00
|
|
|
# Create the `static` and `dev` directories if necessary
|
2013-03-04 18:15:54 +00:00
|
|
|
|
|
|
|
mkdir -p $TW5_BUILD_OUTPUT/static
|
2013-11-27 10:27:57 +00:00
|
|
|
mkdir -p $TW5_BUILD_OUTPUT/dev
|
|
|
|
mkdir -p $TW5_BUILD_OUTPUT/dev/static
|
2013-03-04 18:15:54 +00:00
|
|
|
|
2013-03-20 09:05:50 +00:00
|
|
|
# Delete any existing content
|
|
|
|
|
2013-03-20 11:01:12 +00:00
|
|
|
rm $TW5_BUILD_OUTPUT/static/*
|
2013-03-20 09:05:50 +00:00
|
|
|
|
2013-11-27 10:27:57 +00:00
|
|
|
# First, the tw5.com wiki
|
2013-01-31 10:20:13 +00:00
|
|
|
# index.html: the main file, including content
|
2013-11-26 23:51:09 +00:00
|
|
|
# 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 \
|
2013-11-25 21:16:27 +00:00
|
|
|
--rendertiddler $:/core/save/all $TW5_BUILD_OUTPUT/index.html text/plain \
|
2013-11-26 23:51:09 +00:00
|
|
|
--rendertiddler $:/editions/tw5.com/save-empty $TW5_BUILD_OUTPUT/empty.html text/plain \
|
2013-11-08 08:51:14 +00:00
|
|
|
--rendertiddler $:/core/templates/static.template.html $TW5_BUILD_OUTPUT/static.html text/plain \
|
|
|
|
--rendertiddler $:/core/templates/static.template.css $TW5_BUILD_OUTPUT/static/static.css text/plain \
|
|
|
|
--rendertiddlers [!is[system]] $:/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 \
|
2013-11-25 21:16:27 +00:00
|
|
|
--rendertiddler $:/core/save/all $TW5_BUILD_OUTPUT/encrypted.html text/plain \
|
2013-01-31 10:20:13 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2013-11-27 10:27:57 +00:00
|
|
|
# Third, dev.html: developer info wiki
|
|
|
|
|
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/dev \
|
|
|
|
--verbose \
|
|
|
|
--rendertiddler ReadMe ./readme.md text/html \
|
|
|
|
--rendertiddler ContributingTemplate ./contributing.md text/html \
|
|
|
|
--rendertiddler $:/core/save/all $TW5_BUILD_OUTPUT/dev/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/templates/static.template.html $TW5_BUILD_OUTPUT/dev/static.html text/plain \
|
|
|
|
--rendertiddler $:/core/templates/static.template.css $TW5_BUILD_OUTPUT/dev/static/static.css text/plain \
|
|
|
|
--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html $TW5_BUILD_OUTPUT/dev/static text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# Fourth, tahoelafs.html: empty wiki with plugin for Tahoe-LAFS
|
2013-04-26 21:18:46 +00:00
|
|
|
|
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/tahoelafs \
|
|
|
|
--verbose \
|
2013-11-25 21:16:27 +00:00
|
|
|
--rendertiddler $:/core/save/all $TW5_BUILD_OUTPUT/tahoelafs.html text/plain \
|
2013-04-26 21:18:46 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2013-11-27 10:27:57 +00:00
|
|
|
# Fifth, d3demo.html: wiki to demo d3 plugin
|
2013-07-16 14:03:40 +00:00
|
|
|
|
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/d3demo \
|
|
|
|
--verbose \
|
2013-11-25 21:16:27 +00:00
|
|
|
--rendertiddler $:/core/save/all $TW5_BUILD_OUTPUT/d3demo.html text/plain \
|
2013-07-16 14:03:40 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2013-11-27 10:27:57 +00:00
|
|
|
# Sixth, codemirrordemo.html: wiki to demo codemirror plugin
|
2013-10-28 15:22:31 +00:00
|
|
|
|
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/codemirrordemo \
|
|
|
|
--verbose \
|
2013-11-25 21:16:27 +00:00
|
|
|
--rendertiddler $:/core/save/all $TW5_BUILD_OUTPUT/codemirrordemo.html text/plain \
|
2013-10-28 15:22:31 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2013-11-27 10:27:57 +00:00
|
|
|
# Seventh, codemirrordemo.html: wiki to demo codemirror plugin
|
2013-11-01 16:06:08 +00:00
|
|
|
|
|
|
|
node ./tiddlywiki.js \
|
|
|
|
./editions/markdowndemo \
|
|
|
|
--verbose \
|
2013-11-25 21:16:27 +00:00
|
|
|
--rendertiddler $:/core/save/all $TW5_BUILD_OUTPUT/markdowndemo.html text/plain \
|
2013-11-01 16:06:08 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2013-11-27 10:27:57 +00:00
|
|
|
# Eighth, run the test edition to run the Node.js tests and to generate test.html for tests in the browser
|
2013-04-25 16:16:00 +00:00
|
|
|
|
2013-05-25 15:39:57 +00:00
|
|
|
./test.sh
|