From 7cc100b82d0d051a8240ce3fa874bb5afa97b940 Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Sun, 20 Mar 2022 13:36:08 +0000 Subject: [PATCH] Introduce a tiddlywiki.org edition Using its own build script so that we can push it to https://github.com/TiddlyWiki/tiddlywiki.org-gh-pages --- .github/workflows/ci.yml | 1 + bin/build-tw-org.sh | 97 ++++++++++ .../tw.org/tiddlers/$__DefaultTiddlers.tid | 6 + editions/tw.org/tiddlers/$__SiteSubtitle.tid | 6 + editions/tw.org/tiddlers/$__SiteTitle.tid | 6 + editions/tw.org/tiddlers/$__StoryList.tid | 3 + editions/tw.org/tiddlers/$__favicon.ico.png | Bin 0 -> 6307 bytes .../tw.org/tiddlers/$__favicon.ico.png.meta | 4 + editions/tw.org/tiddlers/$__palette.tid | 6 + .../tw.org/tiddlers/$__palettes_BlueFlavour | 165 ++++++++++++++++++ .../tiddlers/$__palettes_BlueFlavour.meta | 8 + .../tw.org/tiddlers/$__palettes_FlowingSun | 165 ++++++++++++++++++ .../tiddlers/$__palettes_FlowingSun.meta | 8 + ...iddlywiki_vanilla_metrics_bodyfontsize.tid | 6 + ...dlywiki_vanilla_metrics_bodylineheight.tid | 6 + ...iddlywiki_vanilla_metrics_sidebarwidth.tid | 6 + ...ddlywiki_vanilla_options_sidebarlayout.tid | 6 + editions/tw.org/tiddlers/HelloThere.tid | 14 ++ .../tw.org/tiddlers/Table of Contents.tid | 11 ++ editions/tw.org/tiddlers/TiddlyWiki.tid | 8 + editions/tw.org/tiddlywiki.info | 31 ++++ 21 files changed, 563 insertions(+) create mode 100755 bin/build-tw-org.sh create mode 100644 editions/tw.org/tiddlers/$__DefaultTiddlers.tid create mode 100644 editions/tw.org/tiddlers/$__SiteSubtitle.tid create mode 100644 editions/tw.org/tiddlers/$__SiteTitle.tid create mode 100644 editions/tw.org/tiddlers/$__StoryList.tid create mode 100644 editions/tw.org/tiddlers/$__favicon.ico.png create mode 100644 editions/tw.org/tiddlers/$__favicon.ico.png.meta create mode 100644 editions/tw.org/tiddlers/$__palette.tid create mode 100644 editions/tw.org/tiddlers/$__palettes_BlueFlavour create mode 100644 editions/tw.org/tiddlers/$__palettes_BlueFlavour.meta create mode 100644 editions/tw.org/tiddlers/$__palettes_FlowingSun create mode 100644 editions/tw.org/tiddlers/$__palettes_FlowingSun.meta create mode 100644 editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodyfontsize.tid create mode 100644 editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodylineheight.tid create mode 100644 editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_sidebarwidth.tid create mode 100644 editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid create mode 100644 editions/tw.org/tiddlers/HelloThere.tid create mode 100644 editions/tw.org/tiddlers/Table of Contents.tid create mode 100644 editions/tw.org/tiddlers/TiddlyWiki.tid create mode 100644 editions/tw.org/tiddlywiki.info diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f377b3921..acce1b846 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,5 +70,6 @@ jobs: echo "TW5_BUILD_DETAILS=Built from branch '$TW5_BUILD_BRANCH' at commit $(git rev-parse HEAD) of $(git remote get-url origin) at $(date +'%F %T %Z')" >> $GITHUB_ENV - run: "./bin/build-site.sh" - run: "./bin/ci-push.sh" + - run: "./bin/build-tw-org.sh" env: GH_TOKEN: ${{ secrets.GITHUBPUSHTOKEN }} diff --git a/bin/build-tw-org.sh b/bin/build-tw-org.sh new file mode 100755 index 000000000..7cebb3bc6 --- /dev/null +++ b/bin/build-tw-org.sh @@ -0,0 +1,97 @@ +#!/bin/bash + +# Build tiddlywiki.org assets + +# Default to the version of TiddlyWiki installed in this repo + +if [ -z "$TWORG_BUILD_TIDDLYWIKI" ]; then + TWORG_BUILD_TIDDLYWIKI=./tiddlywiki.js +fi + +echo "Using TWORG_BUILD_TIDDLYWIKI as [$TWORG_BUILD_TIDDLYWIKI]" + +# Set up the build details + +if [ -z "$TWORG_BUILD_DETAILS" ]; then + TWORG_BUILD_DETAILS="$(git symbolic-ref --short HEAD)-$(git rev-parse HEAD) from $(git remote get-url origin)" +fi + +echo "Using TWORG_BUILD_DETAILS as [$TWORG_BUILD_DETAILS]" + +if [ -z "$TWORG_BUILD_COMMIT" ]; then + TWORG_BUILD_COMMIT="$(git rev-parse HEAD)" +fi + +echo "Using TWORG_BUILD_COMMIT as [$TWORG_BUILD_COMMIT]" + +# Set up the build output directory + +if [ -z "$TWORG_BUILD_OUTPUT" ]; then + TWORG_BUILD_OUTPUT=$(mktemp -d) +fi + +mkdir -p $TWORG_BUILD_OUTPUT + +if [ ! -d "$TWORG_BUILD_OUTPUT" ]; then + echo 'A valid TWORG_BUILD_OUTPUT environment variable must be set' + exit 1 +fi + +echo "Using TWORG_BUILD_OUTPUT as [$TWORG_BUILD_OUTPUT]" + +# Pull existing GitHub pages content + +git clone --depth=1 --branch=master "https://github.com/TiddlyWiki/tiddlywiki.org-gh-pages.git" output + +# Make the CNAME file that GitHub Pages requires + +echo "tiddlywiki.org" > $TWORG_BUILD_OUTPUT/CNAME + +# Delete any existing static content + +mkdir -p $TWORG_BUILD_OUTPUT/static +rm $TWORG_BUILD_OUTPUT/static/* + +# Put the build details into a .tid file so that it can be included in each build (deleted at the end of this script) + +echo -e -n "title: $:/build\ncommit: $TWORG_BUILD_COMMIT\n\n$TWORG_BUILD_DETAILS\n" > $TWORG_BUILD_OUTPUT/build.tid + +###################################################### +# +# tiddlywiki.org distribution +# +###################################################### + +# /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 +node $TWORG_BUILD_TIDDLYWIKI \ + editions/tw.org \ + --verbose \ + --version \ + --load $TWORG_BUILD_OUTPUT/build.tid \ + --output $TWORG_BUILD_OUTPUT \ + --build favicon static index \ + || exit 1 + +# Delete the temporary build tiddler + +rm $TWORG_BUILD_OUTPUT/build.tid || exit 1 + +# Push output back to GitHub + +# Exit script immediately if any command fails +set -e + +cd output +git config --global user.email "actions@github.com" +git config --global user.name "GitHub Actions" +git add -A . +git commit --message "GitHub build: $GITHUB_RUN_NUMBER of $TW5_BUILD_BRANCH ($(date +'%F %T %Z'))" +git remote add deploy "https://$GH_TOKEN@github.com/TiddlyWiki/tiddlywiki.org-gh-pages.git" &>/dev/null +git push deploy master &>/dev/null +cd .. diff --git a/editions/tw.org/tiddlers/$__DefaultTiddlers.tid b/editions/tw.org/tiddlers/$__DefaultTiddlers.tid new file mode 100644 index 000000000..6b87b6bfa --- /dev/null +++ b/editions/tw.org/tiddlers/$__DefaultTiddlers.tid @@ -0,0 +1,6 @@ +created: 20220318102404333 +modified: 20220318102424312 +title: $:/DefaultTiddlers +type: text/vnd.tiddlywiki + +HelloThere \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__SiteSubtitle.tid b/editions/tw.org/tiddlers/$__SiteSubtitle.tid new file mode 100644 index 000000000..bc6aa7d9a --- /dev/null +++ b/editions/tw.org/tiddlers/$__SiteSubtitle.tid @@ -0,0 +1,6 @@ +created: 20220318102354724 +modified: 20220318102400979 +title: $:/SiteSubtitle +type: text/vnd.tiddlywiki + +community matters for ~TiddlyWiki \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__SiteTitle.tid b/editions/tw.org/tiddlers/$__SiteTitle.tid new file mode 100644 index 000000000..397f0ca40 --- /dev/null +++ b/editions/tw.org/tiddlers/$__SiteTitle.tid @@ -0,0 +1,6 @@ +created: 20220318102331011 +modified: 20220318104654044 +title: $:/SiteTitle +type: text/vnd.tiddlywiki + +[[tiddlywiki.org|HelloThere]] \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__StoryList.tid b/editions/tw.org/tiddlers/$__StoryList.tid new file mode 100644 index 000000000..55e7524f2 --- /dev/null +++ b/editions/tw.org/tiddlers/$__StoryList.tid @@ -0,0 +1,3 @@ +list: HelloThere +title: $:/StoryList +type: text/vnd.tiddlywiki \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__favicon.ico.png b/editions/tw.org/tiddlers/$__favicon.ico.png new file mode 100644 index 0000000000000000000000000000000000000000..c6b279307e6e01953987b393fe7b601fe719d4cb GIT binary patch literal 6307 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�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 L^>bP0l+XkKt3>sq literal 0 HcmV?d00001 diff --git a/editions/tw.org/tiddlers/$__favicon.ico.png.meta b/editions/tw.org/tiddlers/$__favicon.ico.png.meta new file mode 100644 index 000000000..70e5c86db --- /dev/null +++ b/editions/tw.org/tiddlers/$__favicon.ico.png.meta @@ -0,0 +1,4 @@ +created: 20220318165448102 +modified: 20220318165455332 +title: $:/favicon.ico +type: image/png \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__palette.tid b/editions/tw.org/tiddlers/$__palette.tid new file mode 100644 index 000000000..3f24b6c20 --- /dev/null +++ b/editions/tw.org/tiddlers/$__palette.tid @@ -0,0 +1,6 @@ +created: 20220318102711329 +modified: 20220318103746799 +title: $:/palette +type: text/vnd.tiddlywiki + +$:/palettes/FlowingSun \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__palettes_BlueFlavour b/editions/tw.org/tiddlers/$__palettes_BlueFlavour new file mode 100644 index 000000000..cb0f7ecb3 --- /dev/null +++ b/editions/tw.org/tiddlers/$__palettes_BlueFlavour @@ -0,0 +1,165 @@ +: Background Tones + +base03: #362b00 +base02: #423607 + +: Content Tones + +base01: #756e58 +base00: #837b65 +base0: #969483 +base1: #a1a193 + +: Background Tones + +base2: #d5e8ee +base3: #e3f6fd + +: Accent Colors + +yellow: #b58900 +orange: #cb4b16 +red: #dc322f +magenta: #d33682 +violet: #6c71c4 +blue: #268bd2 +cyan: #2aa198 +green: #859900 + +: Additional Tones (RA) + +base10: #bbc0c4 +violet-muted: #7c81b0 +blue-muted: #4e7baa + +yellow-hot: #ffcc44 +orange-hot: #eb6d20 +red-hot: #ff2222 +blue-hot: #2298ee +green-hot: #98ee22 + +: Palette + +: Do not use colour macro for background and foreground +background: #e3f6fd + download-foreground: <> + dragger-foreground: <> + dropdown-background: <> + modal-background: <> + sidebar-foreground-shadow: <> + tiddler-background: <> + tiddler-border: <> + tiddler-link-background: <> + tab-background-selected: <> + dropdown-tab-background-selected: <> +foreground: #837b65 + dragger-background: <> + tab-foreground: <> + tab-foreground-selected: <> + sidebar-tab-foreground-selected: <> + sidebar-tab-foreground: <> + sidebar-button-foreground: <> + sidebar-controls-foreground: <> + sidebar-foreground: <> +: base03 +: base02 +: base01 + alert-muted-foreground: <> +: base00 + code-foreground: <> + message-foreground: <> + tag-foreground: <> +: base0 + sidebar-tiddler-link-foreground: <> +: base1 + muted-foreground: <> + blockquote-bar: <> + dropdown-border: <> + sidebar-muted-foreground: <> + tiddler-title-foreground: <> + site-title-foreground: <> +: base2 + modal-footer-background: <> + page-background: <> + modal-backdrop: <> + notification-background: <> + code-background: <> + code-border: <> + pre-background: <> + pre-border: <> + sidebar-tab-background-selected: <> + table-header-background: <> + tag-background: <> + tiddler-editor-background: <> + tiddler-info-background: <> + tiddler-info-tab-background: <> + tab-background: <> + dropdown-tab-background: <> +: base3 + alert-background: <> + message-background: <> +: yellow +: orange +: red +: magenta + alert-highlight: <> +: violet + external-link-foreground: <> +: blue +: cyan +: green +: base10 + tiddler-controls-foreground: <> +: violet-muted + external-link-foreground-visited: <> +: blue-muted + primary: <> + download-background: <> + tiddler-link-foreground: <> + +alert-border: #b99e2f +dirty-indicator: #ff0000 +dropzone-background: rgba(0,200,0,0.7) +external-link-background-hover: inherit +external-link-background-visited: inherit +external-link-background: inherit +external-link-foreground-hover: inherit +message-border: #cfd6e6 +modal-border: #999999 +select-tag-background: +select-tag-foreground: +sidebar-controls-foreground-hover: +sidebar-muted-foreground-hover: +sidebar-tab-background: #c5d8de +sidebar-tiddler-link-foreground-hover: +static-alert-foreground: #aaaaaa +tab-border: #cccccc + modal-footer-border: <> + modal-header-border: <> + notification-border: <> + sidebar-tab-border: <> + tab-border-selected: <> + sidebar-tab-border-selected: <> +tab-divider: #d8d8d8 + sidebar-tab-divider: <> +table-border: #dddddd +table-footer-background: #a8a8a8 +tiddler-controls-foreground-hover: #888888 +tiddler-controls-foreground-selected: #444444 +tiddler-editor-border-image: #ffffff +tiddler-editor-border: #cccccc +tiddler-editor-fields-even: #e0e8e0 +tiddler-editor-fields-odd: #f0f4f0 +tiddler-info-border: #dddddd +tiddler-subtitle-foreground: #c0c0c0 +toolbar-new-button: +toolbar-options-button: +toolbar-save-button: +toolbar-info-button: +toolbar-edit-button: +toolbar-close-button: +toolbar-delete-button: +toolbar-cancel-button: +toolbar-done-button: +untagged-background: #999999 +very-muted-foreground: #888888 diff --git a/editions/tw.org/tiddlers/$__palettes_BlueFlavour.meta b/editions/tw.org/tiddlers/$__palettes_BlueFlavour.meta new file mode 100644 index 000000000..fd9464ec2 --- /dev/null +++ b/editions/tw.org/tiddlers/$__palettes_BlueFlavour.meta @@ -0,0 +1,8 @@ +color-scheme: light +created: 20220318103222838 +description: Simple colours +modified: 20220318103723059 +name: Blue Flavour +tags: $:/tags/Palette +title: $:/palettes/BlueFlavour +type: application/x-tiddler-dictionary \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__palettes_FlowingSun b/editions/tw.org/tiddlers/$__palettes_FlowingSun new file mode 100644 index 000000000..7eb0b71ce --- /dev/null +++ b/editions/tw.org/tiddlers/$__palettes_FlowingSun @@ -0,0 +1,165 @@ +: Background Tones + +base03: #36002b +base02: #420736 + +: Content Tones + +base01: #75586e +base00: #83657b +base0: #968394 +base1: #a193a1 + +: Background Tones + +base2: #d5eee8 +base3: #e3fdf6 + +: Accent Colors + +yellow: #b58900 +orange: #cb4b16 +red: #dc322f +magenta: #d33682 +violet: #6c71c4 +blue: #268bd2 +cyan: #2aa198 +green: #859900 + +: Additional Tones (RA) + +base10: #bbc0c4 +violet-muted: #7c81b0 +blue-muted: #4e7baa + +yellow-hot: #ffcc44 +orange-hot: #eb6d20 +red-hot: #ff2222 +blue-hot: #2298ee +green-hot: #98ee22 + +: Palette + +: Do not use colour macro for background and foreground +background: #e3fdf6 + download-foreground: <> + dragger-foreground: <> + dropdown-background: <> + modal-background: <> + sidebar-foreground-shadow: <> + tiddler-background: <> + tiddler-border: <> + tiddler-link-background: <> + tab-background-selected: <> + dropdown-tab-background-selected: <> +foreground: #83657b + dragger-background: <> + tab-foreground: <> + tab-foreground-selected: <> + sidebar-tab-foreground-selected: <> + sidebar-tab-foreground: <> + sidebar-button-foreground: <> + sidebar-controls-foreground: <> + sidebar-foreground: <> +: base03 +: base02 +: base01 + alert-muted-foreground: <> +: base00 + code-foreground: <> + message-foreground: <> + tag-foreground: <> +: base0 + sidebar-tiddler-link-foreground: <> +: base1 + muted-foreground: <> + blockquote-bar: <> + dropdown-border: <> + sidebar-muted-foreground: <> + tiddler-title-foreground: <> + site-title-foreground: <> +: base2 + modal-footer-background: <> + page-background: <> + modal-backdrop: <> + notification-background: <> + code-background: <> + code-border: <> + pre-background: <> + pre-border: <> + sidebar-tab-background-selected: <> + table-header-background: <> + tag-background: <> + tiddler-editor-background: <> + tiddler-info-background: <> + tiddler-info-tab-background: <> + tab-background: <> + dropdown-tab-background: <> +: base3 + alert-background: <> + message-background: <> +: yellow +: orange +: red +: magenta + alert-highlight: <> +: violet + external-link-foreground: <> +: blue +: cyan +: green +: base10 + tiddler-controls-foreground: <> +: violet-muted + external-link-foreground-visited: <> +: blue-muted + primary: <> + download-background: <> + tiddler-link-foreground: <> + +alert-border: #b99e2f +dirty-indicator: #ff0000 +dropzone-background: rgba(0,200,0,0.7) +external-link-background-hover: inherit +external-link-background-visited: inherit +external-link-background: inherit +external-link-foreground-hover: inherit +message-border: #cfd6e6 +modal-border: #999999 +select-tag-background: +select-tag-foreground: +sidebar-controls-foreground-hover: +sidebar-muted-foreground-hover: +sidebar-tab-background: #c5ded8 +sidebar-tiddler-link-foreground-hover: +static-alert-foreground: #aaaaaa +tab-border: #cccccc + modal-footer-border: <> + modal-header-border: <> + notification-border: <> + sidebar-tab-border: <> + tab-border-selected: <> + sidebar-tab-border-selected: <> +tab-divider: #d8d8d8 + sidebar-tab-divider: <> +table-border: #dddddd +table-footer-background: #a8a8a8 +tiddler-controls-foreground-hover: #888888 +tiddler-controls-foreground-selected: #444444 +tiddler-editor-border-image: #ffffff +tiddler-editor-border: #cccccc +tiddler-editor-fields-even: #e0e8e0 +tiddler-editor-fields-odd: #f0f4f0 +tiddler-info-border: #dddddd +tiddler-subtitle-foreground: #c0c0c0 +toolbar-new-button: +toolbar-options-button: +toolbar-save-button: +toolbar-info-button: +toolbar-edit-button: +toolbar-close-button: +toolbar-delete-button: +toolbar-cancel-button: +toolbar-done-button: +untagged-background: #999999 +very-muted-foreground: #888888 diff --git a/editions/tw.org/tiddlers/$__palettes_FlowingSun.meta b/editions/tw.org/tiddlers/$__palettes_FlowingSun.meta new file mode 100644 index 000000000..44227d545 --- /dev/null +++ b/editions/tw.org/tiddlers/$__palettes_FlowingSun.meta @@ -0,0 +1,8 @@ +color-scheme: light +created: 20220318102714713 +description: Easy colours +modified: 20220318103305299 +name: Flowing Sun +tags: $:/tags/Palette +title: $:/palettes/FlowingSun +type: application/x-tiddler-dictionary \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodyfontsize.tid b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodyfontsize.tid new file mode 100644 index 000000000..7ca54d393 --- /dev/null +++ b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodyfontsize.tid @@ -0,0 +1,6 @@ +created: 20220318165540214 +modified: 20220318165540353 +title: $:/themes/tiddlywiki/vanilla/metrics/bodyfontsize +type: text/vnd.tiddlywiki + +17px \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodylineheight.tid b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodylineheight.tid new file mode 100644 index 000000000..05b08e5d7 --- /dev/null +++ b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_bodylineheight.tid @@ -0,0 +1,6 @@ +created: 20220318165545749 +modified: 20220318165545749 +title: $:/themes/tiddlywiki/vanilla/metrics/bodylineheight +type: text/vnd.tiddlywiki + +24px \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_sidebarwidth.tid b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_sidebarwidth.tid new file mode 100644 index 000000000..13f316466 --- /dev/null +++ b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_metrics_sidebarwidth.tid @@ -0,0 +1,6 @@ +created: 20220318165613356 +modified: 20220318165613356 +title: $:/themes/tiddlywiki/vanilla/metrics/sidebarwidth +type: text/vnd.tiddlywiki + +450px \ No newline at end of file diff --git a/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid new file mode 100644 index 000000000..1dd7585b7 --- /dev/null +++ b/editions/tw.org/tiddlers/$__themes_tiddlywiki_vanilla_options_sidebarlayout.tid @@ -0,0 +1,6 @@ +created: 20220318165602424 +modified: 20220318165602424 +title: $:/themes/tiddlywiki/vanilla/options/sidebarlayout +type: text/vnd.tiddlywiki + +fluid-fixed \ No newline at end of file diff --git a/editions/tw.org/tiddlers/HelloThere.tid b/editions/tw.org/tiddlers/HelloThere.tid new file mode 100644 index 000000000..e1968ca4b --- /dev/null +++ b/editions/tw.org/tiddlers/HelloThere.tid @@ -0,0 +1,14 @@ +created: 20220318104000046 +modified: 20220319080838250 +title: HelloThere +type: text/vnd.tiddlywiki + +This is the official hub for the TiddlyWiki community. + +Other official TiddlyWiki sites include: + +* [[tiddlywiki.com|https://tiddlywiki.com]] – user documentation +* [[talk.tiddlywiki.org|https://talk.tiddlywiki.org]] – user discussion forum +* [[links.tiddlywiki.org|https://links.tiddlywiki.org]] – collection of links collaboratively curated by the community +* [[tiddlywiki.com/dev|https://tiddlywiki.com/dev]] – internal JavaScript documentation + diff --git a/editions/tw.org/tiddlers/Table of Contents.tid b/editions/tw.org/tiddlers/Table of Contents.tid new file mode 100644 index 000000000..b708d2092 --- /dev/null +++ b/editions/tw.org/tiddlers/Table of Contents.tid @@ -0,0 +1,11 @@ +created: 20211230214957666 +modified: 20211230215118758 +tags: $:/tags/SideBar +title: Table of Contents +type: text/vnd.tiddlywiki + +
+ +<> + +
diff --git a/editions/tw.org/tiddlers/TiddlyWiki.tid b/editions/tw.org/tiddlers/TiddlyWiki.tid new file mode 100644 index 000000000..76b8a7c9a --- /dev/null +++ b/editions/tw.org/tiddlers/TiddlyWiki.tid @@ -0,0 +1,8 @@ +created: 20220318170042624 +modified: 20220318170209825 +title: TiddlyWiki +type: text/vnd.tiddlywiki + +TiddlyWiki is a rich, interactive tool for manipulating complex data with structure that doesn't easily fit into conventional tools like spreadsheets or wordprocessors. + +See [[tiddlywiki.com|https://tiddlywiki.com]] for more details \ No newline at end of file diff --git a/editions/tw.org/tiddlywiki.info b/editions/tw.org/tiddlywiki.info new file mode 100644 index 000000000..19b9b0947 --- /dev/null +++ b/editions/tw.org/tiddlywiki.info @@ -0,0 +1,31 @@ +{ + "description": "Content for https://tiddlywiki.org", + "plugins": [ + "tiddlywiki/internals", + "tiddlywiki/menubar" + ], + "themes": [ + "tiddlywiki/vanilla", + "tiddlywiki/snowwhite" + ], + "languages": [ + ], + "build": { + "index": [ + "--savetiddlers","[tag[external-image]]","images", + "--setfield","[tag[external-image]]","_canonical_uri","$:/core/templates/canonical-uri-external-image","text/plain", + "--setfield","[tag[external-image]]","text","","text/plain", + "--rendertiddler","$:/core/save/all","index.html","text/plain"], + "favicon": [ + "--savetiddler","$:/favicon.ico","favicon.ico", + "--savetiddler","$:/green_favicon.ico","static/favicon.ico"], + "static": [ + "--rendertiddler","$:/core/templates/static.template.html","static.html","text/plain", + "--rendertiddler","$:/core/templates/alltiddlers.template.html","alltiddlers.html","text/plain", + "--rendertiddlers","[!is[system]]","$:/core/templates/static.tiddler.html","static","text/plain", + "--rendertiddler","$:/core/templates/static.template.css","static/static.css","text/plain"] + }, + "config": { + "retain-original-tiddler-path": true + } +}