Go to file
Jeremy Ruston 9d37633f15 Experimenting with test rigs for the wikifier
This approach seems to be a bit too verbose for comfort
2011-12-05 12:26:34 +00:00
js First pass at transliterating the wikifier to avoid DOM usage 2011-12-05 10:34:43 +00:00
node_modules/async Restored async.js module 2011-12-02 16:12:31 +00:00
test Improved readme and example recipe 2011-12-03 14:05:39 +00:00
.gitignore
cook.js A bunch of changes to keep JSHint happy 2011-12-01 10:30:17 +00:00
ginsu.js
readme.md Improved readme and example recipe 2011-12-03 14:05:39 +00:00
server.js
test.sh Revised test data 2011-12-03 11:41:25 +00:00
wikitest.js Experimenting with test rigs for the wikifier 2011-12-05 12:26:34 +00:00

readme.md

cook.js

This is an attempt to modernise TiddlyWiki's build system, which has been based on tools written in Ruby called Cook and Ginsu (see https://github.com/TiddlyWiki/cooker for details). They were first written in 2006 and have been heavily hacked since then.

This new version is written in JavaScript for node.js, with the intention that it can share code with TiddlyWiki itself.

The goal is to achieve byte-for-byte compatibility with the old tools, but only to support the features required by the recipe files that are currently in use by TiddlyWiki and TiddlySpace. One of the difficulties is that cook.rb is very buggy; the current build process for tiddlywiki.com relies on TiddlyWiki itself doing a save operation in the browser to clear up problems with duplicate tiddlers and badly formed attributes.

Usage

node cook.js <recipefile>

Cooks a recipe file and sends the output to STDOUT

node server.js <recipefile>

Cooks a recipe file and serves it over HTTP port 8000

node ginsu.js <tiddlywikifile> <outputdir>

Splits a TiddlyWiki file into separate .tid files and a split.recipe file.

Tiddlers can be read from .tid, .tiddler or TiddlyWeb-style fat `.json' files.

You can use filepaths or URLs to reference recipe files and tiddlers. For example, this recipe cooks the latest TiddlyWiki components directly from the online repositories:

recipe: https://raw.github.com/TiddlyWiki/tiddlywiki/master/tiddlywikinonoscript.html.recipe
tiddler: http://tiddlywiki-com.tiddlyspace.com/bags/tiddlywiki-com-ref_public/tiddlers.json?fat=1
tiddler: http://tiddlywiki-com.tiddlyspace.com/bags/tiddlywiki-com_public/tiddlers.json?fat=1

Testing

test.sh contains a simple test that cooks the main tiddlywiki.com recipe and compares it with the results of the old build process (ie, running cook.rb and then opening the file in a browser and performing a 'save changes' operation).

Current status

As of 2nd December 2011, cook.js can now build a fully functional TiddlyWiki from the existing recipe files. There are two or three minor whitespace issues that prevent full byte-for-byte compatibility.