2019-01-04 17:25:30 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-01-08 13:27:08 +00:00
|
|
|
# Build all tiddlywiki.com assets.
|
2019-01-04 17:25:30 +00:00
|
|
|
|
|
|
|
# Default to the current version number for building the plugin library
|
|
|
|
|
|
|
|
if [ -z "$TW5_BUILD_VERSION" ]; then
|
2024-07-10 13:32:07 +00:00
|
|
|
TW5_BUILD_VERSION=v5.3.6
|
2019-01-04 17:25:30 +00:00
|
|
|
fi
|
|
|
|
|
2019-01-07 21:27:05 +00:00
|
|
|
echo "Using TW5_BUILD_VERSION as [$TW5_BUILD_VERSION]"
|
|
|
|
|
2019-01-04 17:25:30 +00:00
|
|
|
# Default to using tw5.com as the main edition for /index.html
|
|
|
|
|
|
|
|
if [ -z "$TW5_BUILD_MAIN_EDITION" ]; then
|
|
|
|
TW5_BUILD_MAIN_EDITION=./editions/tw5.com
|
|
|
|
fi
|
|
|
|
|
2019-01-07 21:27:05 +00:00
|
|
|
echo "Using TW5_BUILD_MAIN_EDITION as [$TW5_BUILD_MAIN_EDITION]"
|
|
|
|
|
2019-01-04 17:25:30 +00:00
|
|
|
# Default to the version of TiddlyWiki installed in this repo
|
|
|
|
|
|
|
|
if [ -z "$TW5_BUILD_TIDDLYWIKI" ]; then
|
|
|
|
TW5_BUILD_TIDDLYWIKI=./tiddlywiki.js
|
|
|
|
fi
|
|
|
|
|
2019-01-07 21:27:05 +00:00
|
|
|
echo "Using TW5_BUILD_TIDDLYWIKI as [$TW5_BUILD_TIDDLYWIKI]"
|
|
|
|
|
2019-01-07 11:21:10 +00:00
|
|
|
# Set up the build details
|
|
|
|
|
|
|
|
if [ -z "$TW5_BUILD_DETAILS" ]; then
|
|
|
|
TW5_BUILD_DETAILS="$(git symbolic-ref --short HEAD)-$(git rev-parse HEAD) from $(git remote get-url origin)"
|
|
|
|
fi
|
|
|
|
|
2019-01-07 21:27:05 +00:00
|
|
|
echo "Using TW5_BUILD_DETAILS as [$TW5_BUILD_DETAILS]"
|
|
|
|
|
2019-06-23 19:11:55 +00:00
|
|
|
if [ -z "$TW5_BUILD_COMMIT" ]; then
|
|
|
|
TW5_BUILD_COMMIT="$(git rev-parse HEAD)"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Using TW5_BUILD_COMMIT as [$TW5_BUILD_COMMIT]"
|
|
|
|
|
2019-01-04 17:25:30 +00:00
|
|
|
# Set up the build output directory
|
|
|
|
|
|
|
|
if [ -z "$TW5_BUILD_OUTPUT" ]; then
|
|
|
|
TW5_BUILD_OUTPUT=./output
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p $TW5_BUILD_OUTPUT
|
|
|
|
|
|
|
|
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]"
|
|
|
|
|
2019-01-07 11:21:10 +00:00
|
|
|
echo "Build details: $TW5_BUILD_DETAILS"
|
2019-01-06 21:56:32 +00:00
|
|
|
|
2019-01-04 17:25:30 +00:00
|
|
|
# Make the CNAME file that GitHub Pages requires
|
|
|
|
|
|
|
|
echo "tiddlywiki.com" > $TW5_BUILD_OUTPUT/CNAME
|
|
|
|
|
|
|
|
# Delete any existing static content
|
|
|
|
|
|
|
|
mkdir -p $TW5_BUILD_OUTPUT/static
|
|
|
|
mkdir -p $TW5_BUILD_OUTPUT/dev
|
|
|
|
mkdir -p $TW5_BUILD_OUTPUT/dev/static
|
|
|
|
rm $TW5_BUILD_OUTPUT/static/*
|
|
|
|
rm $TW5_BUILD_OUTPUT/dev/static/*
|
|
|
|
|
|
|
|
# Redirects
|
|
|
|
|
|
|
|
echo "<a href='./plugins/tiddlywiki/tw2parser/index.html'>Moved to http://tiddlywiki.com/plugins/tiddlywiki/tw2parser/index.html</a>" > $TW5_BUILD_OUTPUT/classicparserdemo.html
|
|
|
|
echo "<a href='./plugins/tiddlywiki/codemirror/index.html'>Moved to http://tiddlywiki.com/plugins/tiddlywiki/codemirror/index.html</a>" > $TW5_BUILD_OUTPUT/codemirrordemo.html
|
|
|
|
echo "<a href='./plugins/tiddlywiki/d3/index.html'>Moved to http://tiddlywiki.com/plugins/tiddlywiki/d3/index.html</a>" > $TW5_BUILD_OUTPUT/d3demo.html
|
|
|
|
echo "<a href='./plugins/tiddlywiki/highlight/index.html'>Moved to http://tiddlywiki.com/plugins/tiddlywiki/highlight/index.html</a>" > $TW5_BUILD_OUTPUT/highlightdemo.html
|
|
|
|
echo "<a href='./plugins/tiddlywiki/markdown/index.html'>Moved to http://tiddlywiki.com/plugins/tiddlywiki/markdown/index.html</a>" > $TW5_BUILD_OUTPUT/markdowndemo.html
|
|
|
|
echo "<a href='./plugins/tiddlywiki/tahoelafs/index.html'>Moved to http://tiddlywiki.com/plugins/tiddlywiki/tahoelafs/index.html</a>" > $TW5_BUILD_OUTPUT/tahoelafs.html
|
|
|
|
|
2019-01-07 20:07:32 +00:00
|
|
|
# Put the build details into a .tid file so that it can be included in each build (deleted at the end of this script)
|
2019-01-07 11:21:10 +00:00
|
|
|
|
2019-06-23 19:11:55 +00:00
|
|
|
echo -e -n "title: $:/build\ncommit: $TW5_BUILD_COMMIT\n\n$TW5_BUILD_DETAILS\n" > $TW5_BUILD_OUTPUT/build.tid
|
2019-01-07 11:21:10 +00:00
|
|
|
|
2019-01-06 19:08:23 +00:00
|
|
|
######################################################
|
|
|
|
#
|
2023-11-21 11:42:17 +00:00
|
|
|
# Core distributions
|
2019-01-06 19:08:23 +00:00
|
|
|
#
|
|
|
|
######################################################
|
|
|
|
|
2023-11-21 11:42:17 +00:00
|
|
|
# Conditionally build archive if $TW5_BUILD_ARCHIVE variable is set, otherwise do nothing
|
|
|
|
#
|
|
|
|
# /archive/Empty-TiddlyWiki-<version>.html Empty archived version
|
|
|
|
# /archive/TiddlyWiki-<version>.html Full archived version
|
|
|
|
|
|
|
|
if [ -n "$TW5_BUILD_ARCHIVE" ]; then
|
|
|
|
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
$TW5_BUILD_MAIN_EDITION \
|
|
|
|
--verbose \
|
|
|
|
--version \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_ARCHIVE \
|
|
|
|
--build archive \
|
|
|
|
|| exit 1
|
|
|
|
fi
|
|
|
|
|
2019-01-06 19:08:23 +00:00
|
|
|
# /index.html Main site
|
|
|
|
# /favicon.ico Favicon for main site
|
|
|
|
# /static.html Static rendering of default tiddlers
|
|
|
|
# /alltiddlers.html Static rendering of all tiddlers
|
|
|
|
# /static/* Static single tiddlers
|
|
|
|
# /static/static.css Static stylesheet
|
|
|
|
# /static/favicon.ico Favicon for static pages
|
2023-11-21 11:42:17 +00:00
|
|
|
|
2019-01-06 19:08:23 +00:00
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
$TW5_BUILD_MAIN_EDITION \
|
|
|
|
--verbose \
|
|
|
|
--version \
|
2019-01-07 11:21:10 +00:00
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
2019-01-06 19:08:23 +00:00
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--build favicon static index \
|
|
|
|
|| exit 1
|
2019-01-04 17:25:30 +00:00
|
|
|
|
2023-09-13 14:55:23 +00:00
|
|
|
# /empty.html Empty
|
|
|
|
# /empty.hta For Internet Explorer
|
|
|
|
# /empty-external-core.html External core empty
|
|
|
|
# /tiddlywikicore-<version>.js Core plugin javascript
|
2019-01-07 20:07:32 +00:00
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2023-06-20 14:43:13 +00:00
|
|
|
./editions/empty \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
2023-09-13 14:55:23 +00:00
|
|
|
--build empty emptyexternalcore \
|
2019-01-07 20:07:32 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2019-01-08 10:34:50 +00:00
|
|
|
|
|
|
|
# /test.html Test edition
|
2019-01-08 11:00:14 +00:00
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 10:34:50 +00:00
|
|
|
./editions/test \
|
|
|
|
--verbose \
|
2019-01-08 11:00:14 +00:00
|
|
|
--output $TW5_BUILD_OUTPUT \
|
2019-01-08 10:34:50 +00:00
|
|
|
--rendertiddler $:/core/save/all test.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
2019-01-07 20:07:32 +00:00
|
|
|
# /dev/index.html Developer docs
|
|
|
|
# /dev/favicon.ico Favicon for dev site
|
|
|
|
# /dev/static.html Static rendering of default tiddlers
|
|
|
|
# /dev/alltiddlers.html Static rendering of all tiddlers
|
|
|
|
# /dev/static/* Static single tiddlers
|
|
|
|
# /dev/static/static.css Static stylesheet
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/dev \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/dev \
|
|
|
|
--build index favicon static \
|
|
|
|
|| exit 1
|
|
|
|
|
2024-01-25 12:53:35 +00:00
|
|
|
# /tour.html tour edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
./editions/tour \
|
|
|
|
--verbose \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all tour.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
2020-02-04 14:07:28 +00:00
|
|
|
# /share.html Custom edition for sharing via the URL
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
./editions/share \
|
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--build share \
|
|
|
|
|| exit 1
|
|
|
|
|
2019-01-07 20:07:32 +00:00
|
|
|
# /upgrade.html Custom edition for performing upgrades
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/upgrade \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--build upgrade \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /encrypted.html Copy of the main file encrypted with the password "password"
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
$TW5_BUILD_MAIN_EDITION \
|
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--build encrypted \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
|
|
|
|
######################################################
|
|
|
|
#
|
|
|
|
# Editions
|
|
|
|
#
|
|
|
|
######################################################
|
|
|
|
|
|
|
|
# /editions/xlsx-utils/index.html xlsx-utils edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/xlsx-utils \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/xlsx-utils/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /editions/resumebuilder/index.html Resume builder edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/resumebuilder \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/resumebuilder/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /editions/text-slicer/index.html Text slicer edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/text-slicer \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/text-slicer/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /editions/translators/index.html Translators edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/translators \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/translators/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /editions/introduction/index.html Introduction edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/introduction \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/introduction/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /editions/full/index.html Full edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/full \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/full/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /editions/tw5.com-docs/index.html tiddlywiki.com docs edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/tw5.com-docs \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/tw5.com-docs/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
2022-11-12 17:09:31 +00:00
|
|
|
# /editions/twitter-archivist/index.html Twitter Archivist edition
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
./editions/twitter-archivist \
|
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/editions/twitter-archivist/ \
|
|
|
|
--build index \
|
|
|
|
|| exit 1
|
|
|
|
|
2019-01-07 20:07:32 +00:00
|
|
|
######################################################
|
|
|
|
#
|
|
|
|
# Plugin demos
|
|
|
|
#
|
|
|
|
######################################################
|
|
|
|
|
2019-01-27 10:57:56 +00:00
|
|
|
# /plugins/tiddlywiki/innerwiki/index.html Demo wiki with Innerwiki plugin
|
|
|
|
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
./editions/innerwikidemo \
|
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
2019-01-27 11:07:51 +00:00
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/innerwiki/index.html text/plain \
|
2019-01-27 10:57:56 +00:00
|
|
|
|| exit 1
|
|
|
|
|
2019-01-07 20:07:32 +00:00
|
|
|
# /plugins/tiddlywiki/dynaview/index.html Demo wiki with DynaView plugin
|
|
|
|
# /plugins/tiddlywiki/dynaview/empty.html Empty wiki with DynaView plugin
|
|
|
|
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/dynaviewdemo \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/dynaview/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/dynaview/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /plugins/tiddlywiki/katex/index.html Demo wiki with KaTeX plugin
|
|
|
|
# /plugins/tiddlywiki/katex/empty.html Empty wiki with KaTeX plugin
|
|
|
|
|
|
|
|
# TODO: Build the static file with the release of 5.1.3
|
|
|
|
# --rendertiddler $:/core/templates/static.template.html plugins/tiddlywiki/katex/static.html text/plain \
|
|
|
|
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/katexdemo \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/katex/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/katex/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /plugins/tiddlywiki/tahoelafs/index.html Demo wiki with Tahoe-LAFS plugin
|
|
|
|
# /plugins/tiddlywiki/tahoelafs/empty.html Empty wiki with Tahoe-LAFS plugin
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/tahoelafs \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/tahoelafs/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/tahoelafs/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /plugins/tiddlywiki/d3/index.html Demo wiki with D3 plugin
|
|
|
|
# /plugins/tiddlywiki/d3/empty.html Empty wiki with D3 plugin
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/d3demo \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/d3/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/d3/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /plugins/tiddlywiki/codemirror/index.html Demo wiki with codemirror plugin
|
|
|
|
# /plugins/tiddlywiki/codemirror/empty.html Empty wiki with codemirror plugin
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/codemirrordemo \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/codemirror/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/codemirror/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /plugins/tiddlywiki/markdown/index.html Demo wiki with Markdown plugin
|
|
|
|
# /plugins/tiddlywiki/markdown/empty.html Empty wiki with Markdown plugin
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/markdowndemo \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/markdown/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/markdown/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /plugins/tiddlywiki/tw2parser/index.html Demo wiki with tw2parser plugin
|
|
|
|
# /plugins/tiddlywiki/tw2parser/empty.html Empty wiki with tw2parser plugin
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/classicparserdemo \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/tw2parser/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/tw2parser/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /plugins/tiddlywiki/highlight/index.html Demo wiki with highlight plugin
|
|
|
|
# /plugins/tiddlywiki/highlight/empty.html Empty wiki with highlight plugin
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/highlightdemo \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/highlight/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/highlight/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
Add Geospatial plugin (#7406)
* Add XLSX import spec for demo real estate spreadsheets
* Fix fieldname
* Improve map pin
* RealEstate demo: Set lat, long, price fields to be numeric
* Clean up Flickr demo
* Update geomap widget to refresh properly
* Add Leaflet MasterCluster plugin
* Setup the marker cluster plugin
* Rearrange real estate demo
* Reduce default cluster radius
* Beginnings of real estate demo
* Fix interpretation of HTTP status codes
* Real estate demo: Make columns hideable
* Real estate demo: sortability
* Real estate demo: search and limit
* Fix typo
* Fix lat long transposition
* Fix startup ordering
* Add geolookup operator
* Real Estate Demo: Add support for computed columns
* Real estate demo: Increase result limit
* Remove demo data
* Track map pan and zoom state in a state tiddler
* WIP
* Use geojson extension for geojson file
* Use geojson extensions for another geojson file
* Split demo from the geospatial plugin into its own edition
* Add build targets required by ./bin/site-build.sh...
... when building the geospatial edition as the main edition, making it easier to find on Vercel
* CI Fixes
* Fix default tab
* Rearranging geospatial plugin vs. edition
* More refactoring between demo and plugin
* Start of plugin docs
* Display GeoJSON properties on click
* Fix layer lookup demo
* Restore XLSX Utils plugin and dependencies
* Cleanup docs
* Remove 5.2.8 release note
* Remove 5.2.8 release note
* Docs update
* Fix minor refreshing bug for geomap widget
* Docs updates
* Add jsonset operator
* Add geonearestpoint operator
* jsonset: support for other data types and documentation
* Add logo
* Add link to preview build
* jsonset: add support for assigning JSON strings
* Fix nonstandard initialisation code for fill/parameter/slot widgets
* Introduce testcase widget so that we can reuse testcases as documentation examples
There's still a bit to do: adding tabs to the source panel of the testcase display, and tweaking the CSS.
* Update logo
* Testcasewidget: Add tabs for switching between source tiddlers
* Testcase appearance tweaks
* Switch to fluid-fixed layout
* Docs for the testcase-transclude and testcase-view widgets
* Split docs into separate tabs
* Extend testcase-view to be able to view other fields
* Extend default testcase template to show all fields of payload tiddlers
* Add some geomap examples
* Fix testcase rounded corners
* Add a geomap layer demo
* Add favicon
* Switch from building the geospatial plugin as the main build back to tw5.com
To make it easier to get to the documentation for the new features
* Remove obsolete comment
* Remove geospatial plugin from tw5.com build
* Fix build link
* Add note about core enhancements included in this branch
* Refactor data widget implementation
To avoid code duplication
* Integrate test cases with the docs
* Remove erroneously pasted docs material
* Remove erroneously copied olc-encode tests within old-decode test case
* Refactor compound tiddler handling into data widget
And add some tests for the data widget
* Default test case template tweaks
* Move Flickr macros into geospatial plugin from the demo edition
* FlickrDemo: Simplify UI
* FlickrMacros: Use a template to define photo tiddler fields
* Remove geospatial plugin from prerelease default tiddlers
* Extend Flickr helpers to support photoTiddlerTemplate parameter
* Update modification times of doc tiddlers
So that they are at the top of the recent tab
* Update 5.3.0 release note
* Remove custom CI step for this branch
* Restore standard sitetitle
* Flickr macro docs
* Rename $:/tags/GeoLayer to $:/tags/GeoFeature
And make sure that it works with all GeoJSON features, not just polygons
* More test data (from leaflet.js)
* Captions should be transcluded, not viewed raw
* Make HTTP handler use wiki of widget that sent the message
* Switch testcase widget to use an intrinsic template
Makes things much simpler
* Complete Flickr demos
* Extend geonearestpoint operator to work with feature collections
* Extend realestate demo to show data on nearest volcano
* Flickr macros: fix pagination after first page
Make sure that the widget we create to run the actions also has access to the event handlers attached to the rootwidget.
* Real estate demo: Fix nearest volcano
* Testcase docs update
* Testcase template: put title at the top and remove header row
* Docs correction
* New geonearestpoint test case
* Make test cases editable
* Test case default template: Always put "Output" tab first
* Initial Commit
* HttpClient object shouldn't need to know about events
* Add support for cancelling HTTP requests
* Make the number of outstanding HTTP requests available in a state tiddler
* Add a network activity button
Click it to cancel outstanding requests
* WIP
* Fix typo
Thanks @btheado
Co-authored-by: btheado <brian.theado@gmail.com>
* Data widget: parse carriage returns in compound tiddlers
* Fix crash when cancelling more than one HTTP request
Thanks @saqimtiaz
* Further fixes to cancelling outstanding HTTP requests
* Don't have data widget rendering its own JSON
Making the data widget render its raw JSON (introduced in 683ec3300490714da21ef0a1e1e50d348473d868) was a bad idea as it messes up the innerwiki use of the data widget. Instead we use the testcase widget with a special template to render the raw JSON of the payload of a testcase, thus giving us a way to test the data widget
* Fix missed docs update
* Introduce geolayer widget for specifying layers for geomap
* Fix breaking tests
* Remove docs references to obsolete widgets
* Tests for geounion, geointersect and geodifference
* Support for multiple base layers
* Make the layers control visible which allows the base layer to be chosen, and individual overlay layers to be hidden
* Add tiddlers tagged $:/tags/GeoBaseLayer to define some useful map base layers
* Add geobaselayer widget to define base layers
* Add a satellite base layer and another terrain base layer
* Add a note where to get more base layers
* Docs update
* Geomap widget: fix default base layer rendering
* Add startPosition and layersPanel attributes to geomap widget
* Update geolayer widget docs with missing attributes
* Add interactive demos for geounion, geodifference, geointersection
* Open geofeature and geomarker maps on the bounds of their content
* Move settings from demo into plugin
Because now the Flickr macros are part of the plugin
* Icon for geospatial plugin
* Fix missing body
* Flickr Demo typo
* Docs update
* Add support for draggable markers
* Removed accidentally committed file
* Remove unwanted log
* Add support for tm-request-geolocation message
* Fix typo
* Fix bug when fitting to non-extistent bounds
* Update main wiki greeting
* Use "Flickr helpers" instead of "Flickr macros"
* File renames for 05d32716037dd14b8a3741b28a82235defea4701
* Fix testcase widget example
Thanks @btheado
* Fix testcase widget refreshing
* Fix failing tests from 03b6413c7a519429ea75353faf32c0a0baf2b88e
* Docs: Clarify that template must be in the payload
* Testcase widget: Exclude tab state tiddlers
See https://github.com/Jermolene/TiddlyWiki5/pull/7406#discussion_r1327971965
Thanks @btheado
* Remove obsolete setquerystring operator
Instead we have the query- parameters to the http request message
* Remove obsolete change to --setfield command
* Fix tiddler name typo
* Initial Commit
* Add note to preview build
* Fix whitespace and indenting
Thanks @pmario
* Fix crash with unset $tiddler attribute on <$data> widget
Thanks @CodaCodr
* Remove Stamen baselayers
They have stopped making them available for free - see https://maps.stamen.com/stadia-partnership/
* Disable test that won't run in browser CI
* Disable broken tests
* Update olc-encode.tid (#7885)
Correct spelling
* Don't duplicate "description" field in test cases
* Use different background colours for nested testcase widgets
* Extend the testcase widget to run tests
* Add testcases to control panel
* Add a view template body template to render testcase tiddlers
* Test edition should display testcases
* Whitespace fixes
* Make testcase tiddler tempalte link to itself
* Styling tweaks
* Docs improvements
* Styling tweaks
* Run the new tw5.com testcases in the test edition
* Update data widget to display its content in JSON
* Add testcase convenience procedure
* Clearer testcases for data widget, and docs tweaks
* Don't expect our intentionally failing test to pass
* Extend testcase default template so that the display format can be chosen
It is selected by setting the variable "displayFormat"
* DataWidget docs typo
* Mark Geospatial plugin as experimental
* Update to Leaflet v1.9.4
* Remove unneeded template
Left over from when the testcase widget was first implemented
* Don't hide the volcanoes of the world data set
* Update Flickr demo docs
* Fix subtle typo that was preventing popups from working correctly
* Go back to hiding the volcanoes of the world by default
Too much data for a small device now that the markers are displayed correctly
* Clarify docs for tm-request-location
* Update modified testcase from master
* Prepare for merging
---------
Co-authored-by: btheado <brian.theado@gmail.com>
Co-authored-by: Drevarr <drevarr@gmail.com>
2024-05-31 12:31:30 +00:00
|
|
|
# /plugins/tiddlywiki/geospatial/index.html Demo wiki with geospatial plugin
|
|
|
|
# /plugins/tiddlywiki/geospatial/empty.html Empty wiki with geospatial plugin
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
|
|
|
./editions/geospatialdemo \
|
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT \
|
|
|
|
--rendertiddler $:/core/save/all plugins/tiddlywiki/geospatial/index.html text/plain \
|
|
|
|
--rendertiddler $:/core/save/empty plugins/tiddlywiki/geospatial/empty.html text/plain \
|
|
|
|
|| exit 1
|
|
|
|
|
2019-01-07 20:07:32 +00:00
|
|
|
######################################################
|
|
|
|
#
|
|
|
|
# Language editions
|
|
|
|
#
|
|
|
|
######################################################
|
|
|
|
|
|
|
|
# Delete any existing static content
|
|
|
|
|
2023-01-17 23:13:58 +00:00
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/de-AT/static/*
|
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/de-DE/static/*
|
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/es-ES/static/*
|
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/fr-FR/static/*
|
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/ja-JP/static/*
|
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/ko-KR/static/*
|
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/zh-Hans/static/*
|
|
|
|
rm -rf $TW5_BUILD_OUTPUT/languages/zh-Hant/static/*
|
2019-01-07 20:07:32 +00:00
|
|
|
|
|
|
|
# /languages/de-AT/index.html Demo wiki with de-AT language
|
|
|
|
# /languages/de-AT/empty.html Empty wiki with de-AT language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/de-AT \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/de-AT \
|
|
|
|
--build favicon empty static index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /languages/de-DE/index.html Demo wiki with de-DE language
|
|
|
|
# /languages/de-DE/empty.html Empty wiki with de-DE language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/de-DE \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/de-DE \
|
|
|
|
--build favicon empty static index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /languages/es-ES/index.html Demo wiki with es-ES language
|
|
|
|
# /languages/es-ES/empty.html Empty wiki with es-ES language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/es-ES \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/es-ES \
|
|
|
|
--build favicon empty static index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /languages/fr-FR/index.html Demo wiki with fr-FR language
|
|
|
|
# /languages/fr-FR/empty.html Empty wiki with fr-FR language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/fr-FR \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/fr-FR \
|
|
|
|
--build favicon empty static index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /languages/ja-JP/index.html Demo wiki with ja-JP language
|
|
|
|
# /languages/ja-JP/empty.html Empty wiki with ja-JP language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/ja-JP \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/ja-JP \
|
|
|
|
--build empty index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /languages/ko-KR/index.html Demo wiki with ko-KR language
|
|
|
|
# /languages/ko-KR/empty.html Empty wiki with ko-KR language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/ko-KR \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/ko-KR \
|
|
|
|
--build favicon empty static index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /languages/zh-Hans/index.html Demo wiki with zh-Hans language
|
|
|
|
# /languages/zh-Hans/empty.html Empty wiki with zh-Hans language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/zh-Hans \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/zh-Hans \
|
|
|
|
--build empty index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# /languages/zh-Hant/index.html Demo wiki with zh-Hant language
|
|
|
|
# /languages/zh-Hant/empty.html Empty wiki with zh-Hant language
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/zh-Hant \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/languages/zh-Hant \
|
|
|
|
--build empty index \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
######################################################
|
|
|
|
#
|
|
|
|
# Plugin library
|
|
|
|
#
|
|
|
|
######################################################
|
|
|
|
|
|
|
|
node $TW5_BUILD_TIDDLYWIKI \
|
2019-01-08 11:00:14 +00:00
|
|
|
./editions/pluginlibrary \
|
2019-01-07 20:07:32 +00:00
|
|
|
--verbose \
|
|
|
|
--load $TW5_BUILD_OUTPUT/build.tid \
|
|
|
|
--output $TW5_BUILD_OUTPUT/library/$TW5_BUILD_VERSION \
|
2022-11-16 08:26:35 +00:00
|
|
|
--build library\
|
2019-01-07 20:07:32 +00:00
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
# Delete the temporary build tiddler
|
|
|
|
|
|
|
|
rm $TW5_BUILD_OUTPUT/build.tid || exit 1
|