2011-11-22 14:29:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2011-11-25 15:51:02 +00:00
|
|
|
# create a temporary directory if it doesn't already exist
|
|
|
|
mkdir -p tmp
|
|
|
|
|
2011-12-03 11:41:25 +00:00
|
|
|
# cook tiddlywiki 2.6.5 with cook.js
|
|
|
|
node cook.js $PWD/test/tiddlywiki.2.6.5/source/tiddlywiki.com/index.html.recipe > tmp/newcooked.html || exit 1
|
2011-11-22 14:29:29 +00:00
|
|
|
|
|
|
|
# compare the two
|
2011-12-03 11:41:25 +00:00
|
|
|
opendiff tmp/newcooked.html test/tiddlywiki.2.6.5/target/index.2.6.5.html
|
2011-11-25 19:20:35 +00:00
|
|
|
|
2011-11-26 12:51:56 +00:00
|
|
|
# split the newly cooked tiddlywiki into tiddlers, first with the new ginsu
|
2011-12-03 11:41:25 +00:00
|
|
|
#mkdir -p tmp/newtiddlers
|
|
|
|
#rm -f tmp/newtiddlers/*
|
|
|
|
#node ginsu.js tmp/newcooked.html tmp/newtiddlers || exit 1
|
2011-11-26 13:23:26 +00:00
|
|
|
|
|
|
|
# now cook those tiddlers back again with the respective versions of cook
|
|
|
|
#cook $PWD/test/data/recipes/oldtiddlers.recipe -d $PWD -o tmp/oldrecooked.html || exit 1
|
2011-12-03 11:41:25 +00:00
|
|
|
#node cook.js $PWD/test/data/recipes/newtiddlers.recipe > tmp/newrecooked.html || exit 1
|