active_form 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/Manifest.txt +1 -0
- data/README.txt +9 -1
- data/lib/active_form/version.rb +1 -1
- data/lib/rails/support.rb +5 -0
- metadata +3 -2
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/Manifest.txt
CHANGED
@@ -82,6 +82,7 @@ lib/rails/acts_as_dropdown/acts_as_dropdown.rb
|
|
82
82
|
lib/rails/acts_as_dropdown/dropdown.rb
|
83
83
|
lib/rails/controller_helper.rb
|
84
84
|
lib/rails/model/loader.rb
|
85
|
+
lib/rails/support.rb
|
85
86
|
lib/rails/view_helper.rb
|
86
87
|
samples/html/css/style.css
|
87
88
|
samples/html/js/effects.js
|
data/README.txt
CHANGED
@@ -1 +1,9 @@
|
|
1
|
-
|
1
|
+
Copyright (c) 2007-2008 atelierfabien - loobmedia
|
2
|
+
|
3
|
+
ActiveForm provides a DSL for defining complete XHTML forms with validation. You can compose your own widgets and (nested) form sections from basic elements. Markup is generated by Builder, using several wrappers and callbacks which render their child elements accordingly. This allows one to customize all output.
|
4
|
+
|
5
|
+
Both serverside as well as clientside validation is supported and values are bound in a nested fashion to their elements, similar to how Rails expects params from forms.
|
6
|
+
|
7
|
+
It's possible to output elements, sections and the complete forms, allowing easy integration with ERB templates. While it's distributed as a gem it can easily be used as a plugin for Rails.
|
8
|
+
|
9
|
+
See test/ and samples/ for more information.
|
data/lib/active_form/version.rb
CHANGED
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: active_form
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2008-02-
|
6
|
+
version: 0.0.6
|
7
|
+
date: 2008-02-28 00:00:00 +01:00
|
8
8
|
summary: ActiveForm provides a DSL for defining complete XHTML forms with validation.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -136,6 +136,7 @@ files:
|
|
136
136
|
- lib/rails/acts_as_dropdown/dropdown.rb
|
137
137
|
- lib/rails/controller_helper.rb
|
138
138
|
- lib/rails/model/loader.rb
|
139
|
+
- lib/rails/support.rb
|
139
140
|
- lib/rails/view_helper.rb
|
140
141
|
- samples/html/css/style.css
|
141
142
|
- samples/html/js/effects.js
|
metadata.gz.sig
CHANGED
Binary file
|