[Checkins] SVN: z3c.formjs/tags/0.2.0/ adding a tag for 0.2.0 release

Paul Carduner paulcarduner at gmail.com
Wed Jul 18 23:31:09 EDT 2007


Log message for revision 78135:
  adding a tag for 0.2.0 release

Changed:
  A   z3c.formjs/tags/0.2.0/
  D   z3c.formjs/tags/0.2.0/CHANGES.txt
  A   z3c.formjs/tags/0.2.0/CHANGES.txt
  D   z3c.formjs/tags/0.2.0/TODO.txt
  A   z3c.formjs/tags/0.2.0/TODO.txt

-=-
Copied: z3c.formjs/tags/0.2.0 (from rev 78133, z3c.formjs/trunk)

Deleted: z3c.formjs/tags/0.2.0/CHANGES.txt
===================================================================
--- z3c.formjs/trunk/CHANGES.txt	2007-07-19 03:11:32 UTC (rev 78133)
+++ z3c.formjs/tags/0.2.0/CHANGES.txt	2007-07-19 03:31:08 UTC (rev 78135)
@@ -1,31 +0,0 @@
-=======
-CHANGES
-=======
-
-Version 0.2.0 (??/??/2007)
---------------------------
-
-- Feature: Registration of public AJAX server calls via a simple
-  decorator. The calls are made available via a special ``ajax`` view on the
-  original view.
-
-- Feature: Allow registering of JS subscriptions via a decorator within the
-  presentation component.
-
-- Feature: Added a new CSS selector.
-
-- Feature: Implementation of AJAX-driven widget value validation.
-
-- Restructure: Completely overhauled the entire API to be most easy to use and
-  have the most minimal implementation.
-
-- Bug: The package is now 100% tested.
-
-- Feature: Implementation of AJAX request handlers in forms.
-
-Version 0.1.0 (6/29/2007)
--------------------------
-
-- Initial Release
-
-  * Feature: JS event association with fields and buttons.

Copied: z3c.formjs/tags/0.2.0/CHANGES.txt (from rev 78134, z3c.formjs/trunk/CHANGES.txt)
===================================================================
--- z3c.formjs/tags/0.2.0/CHANGES.txt	                        (rev 0)
+++ z3c.formjs/tags/0.2.0/CHANGES.txt	2007-07-19 03:31:08 UTC (rev 78135)
@@ -0,0 +1,31 @@
+=======
+CHANGES
+=======
+
+Version 0.2.0 (7/18/2007)
+--------------------------
+
+- Feature: Registration of public AJAX server calls via a simple
+  decorator. The calls are made available via a special ``ajax`` view on the
+  original view.
+
+- Feature: Allow registering of JS subscriptions via a decorator within the
+  presentation component.
+
+- Feature: Added a new CSS selector.
+
+- Feature: Implementation of AJAX-driven widget value validation.
+
+- Restructure: Completely overhauled the entire API to be most easy to use and
+  have the most minimal implementation.
+
+- Bug: The package is now 100% tested.
+
+- Feature: Implementation of AJAX request handlers in forms.
+
+Version 0.1.0 (6/29/2007)
+-------------------------
+
+- Initial Release
+
+  * Feature: JS event association with fields and buttons.

Deleted: z3c.formjs/tags/0.2.0/TODO.txt
===================================================================
--- z3c.formjs/trunk/TODO.txt	2007-07-19 03:11:32 UTC (rev 78133)
+++ z3c.formjs/tags/0.2.0/TODO.txt	2007-07-19 03:31:08 UTC (rev 78135)
@@ -1,21 +0,0 @@
-====
-TODO
-====
-
- - modify validator code to use ajax.handler decorator and the @@ajax
-   view for communication.
-
- - 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?)

Copied: z3c.formjs/tags/0.2.0/TODO.txt (from rev 78134, z3c.formjs/trunk/TODO.txt)
===================================================================
--- z3c.formjs/tags/0.2.0/TODO.txt	                        (rev 0)
+++ z3c.formjs/tags/0.2.0/TODO.txt	2007-07-19 03:31:08 UTC (rev 78135)
@@ -0,0 +1,23 @@
+====
+TODO
+====
+
+ - A way to write a javascript function in python such that you can
+   render a call to it from python
+
+    class SomeForm:
+        @jsfunction('bar') # bar is the namespace
+        def foo(self):
+            return 'alert("foo");'
+    renderJSFunction(SomeForm.foo)
+    'function z3c_formjs_foo(){ alert("foo"); }'
+    renderJSCall(SomeForm.foo)
+    'bar_foo()'
+
+ - ajax form submission - ala "save" button
+
+ - ajax widget switching
+
+ - client side js validators for simple fields.  (maybe we can use an
+   existing library?)
+



More information about the Checkins mailing list