[ZPT] CVS: Packages/TAL - README.txt:1.6

guido@digicool.com guido@digicool.com
Thu, 22 Mar 2001 12:04:01 -0500 (EST)


Update of /cvs-repository/Packages/TAL
In directory korak:/tmp/cvs-serv26953

Modified Files:
	README.txt 
Log Message:
Updated test procedure.  Updated TO DO list.



--- Updated File README.txt in package Packages/TAL --
--- README.txt	2001/03/21 22:49:37	1.5
+++ README.txt	2001/03/22 17:04:00	1.6
@@ -42,10 +42,14 @@
 Regression test
 ---------------
 
-There are a number of test cases in the test subdirectory, named
-test/test<number>.xml and test/test<number>.html.  The Python script
-./runtest.py calls driver.main() for each test case, and should print
-"<file> OK" for each testcase.
+There are a number of test files in the test subdirectory, named
+test/input/test<number>.xml and test/input/test<number>.html.  The
+Python script ./runtest.py calls driver.main() for each test file, and
+should print "<file> OK" for each one.
+
+In addition, there are unit test suites in the test subdirectory;
+these can be run with test/run.py.  This should print a number of
+testcase names, ending with a line saying "OK".
 
 What's Here
 -----------
@@ -78,8 +82,11 @@
 - Implement on-error.  Assume that the evaluation engine's evaluate()
   functions raise TALESError (defined where???) on all exceptions.
 
-- Bring DummyEngine.py up to specs.
+- Reject input with TAL or METAL statements on tags whose end tag is
+  implied.
 
+- Bring DummyEngine.py up to specs.  (string: instead of str:, etc.)
+
 - Finish implementing insertStructure(): attribute replacement isn't
   implemented yet.
 
@@ -89,10 +96,6 @@
 - HTMLTALParser.py and TALParser.py are silly names.  Should be
   HTMLTALCompiler.py and XMLTALCompiler.py (or maybe shortened,
   without "TAL"?)
-
-- The HTML TAL compiler should preserve more information about the
-  start element, e.g. <img ismap /> should be output like that, not as
-  <img ismap="ismap">.
 
 - Should we preserve case of tags and attribute names in HTML?