[Checkins] SVN: z3c.formjs/trunk/ updated TODO and CHANGES files.

Paul Carduner paulcarduner at gmail.com
Sat Jul 14 09:48:27 EDT 2007


Log message for revision 77927:
  updated TODO and CHANGES files.

Changed:
  U   z3c.formjs/trunk/CHANGES.txt
  U   z3c.formjs/trunk/TODO.txt

-=-
Modified: z3c.formjs/trunk/CHANGES.txt
===================================================================
--- z3c.formjs/trunk/CHANGES.txt	2007-07-14 13:40:54 UTC (rev 77926)
+++ z3c.formjs/trunk/CHANGES.txt	2007-07-14 13:48:26 UTC (rev 77927)
@@ -12,6 +12,7 @@
 
 - Bug: The package is now 100% tested.
 
+- Feature: Implementation of AJAX request handlers in forms.
 
 Version 0.1.0 (6/29/2007)
 -------------------------

Modified: z3c.formjs/trunk/TODO.txt
===================================================================
--- z3c.formjs/trunk/TODO.txt	2007-07-14 13:40:54 UTC (rev 77926)
+++ z3c.formjs/trunk/TODO.txt	2007-07-14 13:48:26 UTC (rev 77927)
@@ -1,3 +1,18 @@
 ====
 TODO
 ====
+
+ - A way to write a javascript function in python such that you can
+   render a call to it from python
+
+    class SomeForm:
+        @jsfunction
+        def foo(self):
+            return 'alert("foo");'
+    renderJSFunction(SomeForm.foo)
+    'function z3c_formjs_foo(){ alert("foo"); }'
+    renderJSCall(SomeForm.foo)
+    'z3c_formjs_foo()'
+
+ - client side js validators for simple fields.  (maybe we can use an
+   existing library?)
\ No newline at end of file



More information about the Checkins mailing list