README

Fri, 13 Nov 2009 18:38:39 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 13 Nov 2009 18:38:39 +0000
changeset 4
370c51ee7b06
parent 1
b3889bfb6052
permissions
-rw-r--r--

Update README to mention Squish

1
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 lua2html... another one. Feel free to suggest a more original name :)
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 This script is the one I use for HTML-ifying my Lua scripts. Its goal isn't full syntax colouring of
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4 Lua, but this version has some more useful features.
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 Global variables are highlighted in red, and even stronger when they are being set. Upvalues are highlighted in green.
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 It can also read in coverage reports from my homegrown unit tester. They are in the format:
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 test_sasl.lua|30||true
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 test_sasl.lua|31||miss
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 The first column is the filename, then the line number, and the last column is 'true' (line passed all tests), 'false'
b3889bfb6052 Add README and COPYING files
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 (line failed one more tests) or 'miss' to indicate the line wasn't tested. Don't ask what the empty column is, I forgot :)
4
370c51ee7b06 Update README to mention Squish
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
15
370c51ee7b06 Update README to mention Squish
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
16 If you have Squish installed ( http://matthewwild.co.uk/projects/squish ) then you can just type 'squish' in the current
370c51ee7b06 Update README to mention Squish
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
17 directory to produce a compressed lua2html file.

mercurial