hobo 0.7.5 → 0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/{hobo_files/plugin/CHANGES.txt → CHANGES.txt} +391 -0
- data/Manifest +146 -0
- data/{hobo_files/plugin/README → README} +0 -0
- data/bin/hobo +13 -26
- data/dryml_generators/rapid/cards.dryml.erb +55 -0
- data/dryml_generators/rapid/forms.dryml.erb +43 -0
- data/dryml_generators/rapid/pages.dryml.erb +284 -0
- data/hobo.gemspec +168 -0
- data/init.rb +9 -0
- data/lib/action_view_extensions/helpers/tag_helper.rb +7 -0
- data/lib/active_record/association_collection.rb +54 -0
- data/{hobo_files/plugin/lib → lib}/active_record/association_proxy.rb +12 -4
- data/{hobo_files/plugin/lib → lib}/active_record/association_reflection.rb +7 -1
- data/{hobo_files/plugin/lib → lib}/extensions/test_case.rb +17 -17
- data/{hobo_files/plugin/lib → lib}/hobo.rb +193 -100
- data/{hobo_files/plugin/lib → lib}/hobo/authentication_support.rb +8 -8
- data/{hobo_files/plugin/lib → lib}/hobo/bundle.rb +90 -89
- data/{hobo_files/plugin/lib → lib}/hobo/composite_model.rb +21 -21
- data/{hobo_files/plugin/lib → lib}/hobo/controller.rb +38 -25
- data/{hobo_files/plugin/lib → lib}/hobo/dev_controller.rb +10 -6
- data/lib/hobo/dryml.rb +167 -0
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/dryml_builder.rb +28 -25
- data/lib/hobo/dryml/dryml_generator.rb +210 -0
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/dryml_support_controller.rb +1 -1
- data/lib/hobo/dryml/parser.rb +3 -0
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/parser/attribute.rb +6 -6
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/parser/base_parser.rb +16 -16
- data/lib/hobo/dryml/parser/document.rb +57 -0
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/parser/element.rb +7 -7
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/parser/elements.rb +9 -9
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/parser/source.rb +3 -3
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/parser/text.rb +3 -3
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/parser/tree_parser.rb +3 -3
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/part_context.rb +26 -26
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/scoped_variables.rb +15 -15
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/tag_parameters.rb +10 -10
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/taglib.rb +43 -37
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/template.rb +290 -208
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/template_environment.rb +173 -115
- data/{hobo_files/plugin/lib → lib}/hobo/dryml/template_handler.rb +19 -24
- data/lib/hobo/find_for.rb +95 -0
- data/{hobo_files/plugin/lib → lib}/hobo/generator.rb +2 -1
- data/{hobo_files/plugin/lib → lib}/hobo/guest.rb +12 -4
- data/{hobo_files/plugin/lib → lib}/hobo/hobo_helper.rb +146 -117
- data/lib/hobo/include_in_save.rb +43 -0
- data/lib/hobo/lifecycles.rb +94 -0
- data/lib/hobo/lifecycles/actions.rb +73 -0
- data/lib/hobo/lifecycles/creator.rb +76 -0
- data/lib/hobo/lifecycles/lifecycle.rb +205 -0
- data/lib/hobo/lifecycles/state.rb +23 -0
- data/lib/hobo/lifecycles/transition.rb +66 -0
- data/{hobo_files/plugin/lib → lib}/hobo/model.rb +306 -217
- data/{hobo_files/plugin/lib → lib}/hobo/model_controller.rb +342 -213
- data/{hobo_files/plugin/lib → lib}/hobo/model_router.rb +151 -120
- data/{hobo_files/plugin/lib → lib}/hobo/model_support.rb +9 -9
- data/{hobo_files/plugin/lib → lib}/hobo/rapid_helper.rb +30 -23
- data/{hobo_files/plugin/lib → lib}/hobo/scopes.rb +22 -68
- data/{hobo_files/plugin/lib → lib}/hobo/scopes/apply_scopes.rb +5 -5
- data/lib/hobo/scopes/association_proxy_extensions.rb +47 -0
- data/{hobo_files/plugin/lib → lib}/hobo/scopes/automatic_scopes.rb +104 -79
- data/lib/hobo/scopes/named_scope_extensions.rb +27 -0
- data/{hobo_files/plugin/lib → lib}/hobo/static_tags +1 -11
- data/{hobo_files/plugin/lib → lib}/hobo/undefined.rb +1 -1
- data/{hobo_files/plugin/lib → lib}/hobo/undefined_access_error.rb +0 -0
- data/{hobo_files/plugin/lib → lib}/hobo/user.rb +27 -25
- data/{hobo_files/plugin/lib → lib}/hobo/user_controller.rb +80 -34
- data/{hobo_files/plugin/generators → rails_generators}/hobo/hobo_generator.rb +7 -7
- data/rails_generators/hobo/templates/application.css +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo/templates/application.dryml +0 -2
- data/{hobo_files/plugin/generators → rails_generators}/hobo/templates/dryml-support.js +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo/templates/guest.rb +0 -0
- data/rails_generators/hobo/templates/initializer.rb +9 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_front_controller/USAGE +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_front_controller/hobo_front_controller_generator.rb +1 -3
- data/{hobo_files/plugin/generators → rails_generators}/hobo_front_controller/templates/controller.rb +1 -1
- data/{hobo_files/plugin/generators → rails_generators}/hobo_front_controller/templates/functional_test.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_front_controller/templates/helper.rb +0 -0
- data/rails_generators/hobo_front_controller/templates/index.dryml +25 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model/USAGE +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model/hobo_model_generator.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model/templates/fixtures.yml +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model/templates/model.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model/templates/unit_test.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_controller/USAGE +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_controller/hobo_model_controller_generator.rb +0 -7
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_controller/templates/controller.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_controller/templates/functional_test.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_controller/templates/helper.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_resource/hobo_model_resource_generator.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_resource/templates/controller.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_resource/templates/functional_test.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_model_resource/templates/helper.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/hobo_rapid_generator.rb +21 -11
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/IE7.js +1 -1
- data/rails_generators/hobo_rapid/templates/blank.gif +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/hobo-rapid.css +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/hobo-rapid.js +175 -104
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/lowpro.js +0 -0
- data/rails_generators/hobo_rapid/templates/nicEditorIcons.gif +0 -0
- data/rails_generators/hobo_rapid/templates/nicedit.js +91 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/reset.css +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/themes/clean/public/images/fieldbg.gif +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/themes/clean/public/images/pencil.png +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/themes/clean/public/images/small_close.png +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/themes/clean/public/images/spinner.gif +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/themes/clean/public/stylesheets/clean.css +80 -71
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/themes/clean/public/stylesheets/rapid-ui.css +6 -1
- data/{hobo_files/plugin/generators → rails_generators}/hobo_rapid/templates/themes/clean/views/clean.dryml +4 -4
- data/rails_generators/hobo_subsite/hobo_subsite_generator.rb +73 -0
- data/rails_generators/hobo_subsite/templates/application.dryml +1 -0
- data/rails_generators/hobo_subsite/templates/controller.rb +5 -0
- data/rails_generators/hobo_subsite/templates/site_taglib.dryml +13 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_controller/USAGE +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_controller/hobo_user_controller_generator.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_controller/templates/controller.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_controller/templates/functional_test.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_controller/templates/helper.rb +0 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_model/USAGE +0 -0
- data/rails_generators/hobo_user_model/hobo_user_model_generator.rb +30 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_model/templates/fixtures.yml +0 -0
- data/rails_generators/hobo_user_model/templates/forgot_password.erb +10 -0
- data/rails_generators/hobo_user_model/templates/mailer.rb +14 -0
- data/rails_generators/hobo_user_model/templates/model.rb +55 -0
- data/{hobo_files/plugin/generators → rails_generators}/hobo_user_model/templates/unit_test.rb +0 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/{hobo_files/plugin/taglibs → taglibs}/core.dryml +6 -7
- data/{hobo_files/plugin/taglibs → taglibs}/rapid.dryml +36 -67
- data/{hobo_files/plugin/taglibs → taglibs}/rapid_document_tags.dryml +7 -24
- data/{hobo_files/plugin/taglibs → taglibs}/rapid_editing.dryml +51 -50
- data/{hobo_files/plugin/taglibs → taglibs}/rapid_forms.dryml +62 -56
- data/taglibs/rapid_generics.dryml +33 -0
- data/taglibs/rapid_lifecycles.dryml +43 -0
- data/{hobo_files/plugin/taglibs → taglibs}/rapid_navigation.dryml +23 -23
- data/taglibs/rapid_pages.dryml +183 -0
- data/{hobo_files/plugin/taglibs → taglibs}/rapid_plus.dryml +30 -5
- data/{hobo_files/plugin/taglibs → taglibs}/rapid_support.dryml +3 -4
- data/taglibs/rapid_user_pages.dryml +179 -0
- data/{hobo_files/plugin/tasks → tasks}/environments.rake +0 -0
- data/{hobo_files/plugin/tasks → tasks}/fix_dryml.rake +0 -0
- data/{hobo_files/plugin/tasks → tasks}/generate_tag_reference.rb +21 -22
- data/tasks/hobo_tasks.rake +32 -0
- data/test/test_generator_helper.rb +29 -0
- data/test/test_helper.rb +1 -0
- data/test/test_hobo_model_controller_generator.rb +56 -0
- data/{hobo_files/plugin/uninstall.rb → uninstall.rb} +0 -0
- metadata +240 -225
- data/README.txt +0 -18
- data/hobo_files/plugin/LICENSE.txt +0 -22
- data/hobo_files/plugin/Rakefile +0 -96
- data/hobo_files/plugin/generators/hobo_front_controller/templates/index.dryml +0 -24
- data/hobo_files/plugin/generators/hobo_front_controller/templates/search.dryml +0 -19
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/banner.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-bodytop.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-corner-01.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-corner-02.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-corner-03.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-corner-04.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-shadow-bottom.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-shadow-left.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-shadow-right.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/bkg-shadow-top.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/header-blue.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/header-dblue.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/header-green.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/header-purple.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/header-red.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/logo.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/plus.png +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/spinner.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/txt-list-img-dblue.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/txt-list-img-green.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/txt-list-img-purple.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/txt-list-img-red.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-corner-01.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-corner-02.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-corner-03.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-corner-04.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-shadow-bottom.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-shadow-left.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-shadow-right.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/images/window-shadow-top.gif +0 -0
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/public/stylesheets/application.css +0 -400
- data/hobo_files/plugin/generators/hobo_rapid/templates/themes/default/views/application.dryml +0 -96
- data/hobo_files/plugin/generators/hobo_user_model/hobo_user_model_generator.rb +0 -25
- data/hobo_files/plugin/generators/hobo_user_model/templates/model.rb +0 -56
- data/hobo_files/plugin/init.rb +0 -101
- data/hobo_files/plugin/lib/action_view_extensions/base.rb +0 -15
- data/hobo_files/plugin/lib/active_record/has_many_association.rb +0 -55
- data/hobo_files/plugin/lib/active_record/has_many_through_association.rb +0 -20
- data/hobo_files/plugin/lib/hobo/dryml.rb +0 -165
- data/hobo_files/plugin/lib/hobo/dryml/parser/document.rb +0 -53
- data/hobo_files/plugin/lib/hobo/scopes/association_proxy_extensions.rb +0 -33
- data/hobo_files/plugin/lib/hobo/scopes/defined_scope_proxy_extender.rb +0 -90
- data/hobo_files/plugin/lib/hobo/scopes/scope_reflection.rb +0 -18
- data/hobo_files/plugin/lib/hobo/scopes/scoped_proxy.rb +0 -55
- data/hobo_files/plugin/taglib-docs/core.markdown +0 -165
- data/hobo_files/plugin/taglib-docs/rapid.markdown +0 -677
- data/hobo_files/plugin/taglib-docs/rapid_document_tags.markdown +0 -240
- data/hobo_files/plugin/taglib-docs/rapid_editing.markdown +0 -418
- data/hobo_files/plugin/taglib-docs/rapid_forms.markdown +0 -562
- data/hobo_files/plugin/taglib-docs/rapid_generics.markdown +0 -187
- data/hobo_files/plugin/taglib-docs/rapid_navigation.markdown +0 -214
- data/hobo_files/plugin/taglib-docs/rapid_pages.markdown +0 -530
- data/hobo_files/plugin/taglib-docs/rapid_plus.markdown +0 -65
- data/hobo_files/plugin/taglib-docs/rapid_support.markdown +0 -50
- data/hobo_files/plugin/taglib-docs/rapid_user_pages.markdown +0 -129
- data/hobo_files/plugin/taglibs/rapid_generics.dryml +0 -117
- data/hobo_files/plugin/taglibs/rapid_pages.dryml +0 -359
- data/hobo_files/plugin/taglibs/rapid_user_pages.dryml +0 -104
- data/hobo_files/plugin/tasks/dump_fixtures.rake +0 -70
- data/hobo_files/plugin/tasks/hobo_tasks.rake +0 -17
@@ -1,562 +0,0 @@
|
|
1
|
-
# Rapid Forms
|
2
|
-
|
3
|
-
* [<hidden-fields>](#hidden-fields)
|
4
|
-
* [<form>](#form)
|
5
|
-
* [<submit>](#submit)
|
6
|
-
* [<input>](#input)
|
7
|
-
* [<input for=`"text"`>](#input--for-text)
|
8
|
-
* [<input for=`"boolean"`>](#input--for-boolean)
|
9
|
-
* [<input for=`"password"`>](#input--for-password)
|
10
|
-
* [<input for=`"html"`>](#input--for-html)
|
11
|
-
* [<input for=`"date"`>](#input--for-date)
|
12
|
-
* [<input for=`"datetime"`>](#input--for-datetime)
|
13
|
-
* [<input for=`"integer"`>](#input--for-integer)
|
14
|
-
* [<input for=`"float"`>](#input--for-float)
|
15
|
-
* [<input for=`"string"`>](#input--for-string)
|
16
|
-
* [<input for=`"big_integer"`>](#input--for-big_integer)
|
17
|
-
* [<input for=`"HoboFields::EnumString"`>](#input--for-HoboFields::EnumString)
|
18
|
-
* [<remote-method-button>](#remote-method-button)
|
19
|
-
* [<update-button>](#update-button)
|
20
|
-
* [<delete-button>](#delete-button)
|
21
|
-
* [<create-button>](#create-button)
|
22
|
-
* [<select-one>](#select-one)
|
23
|
-
* [<name-one>](#name-one)
|
24
|
-
* [<sti-type-input>](#sti-type-input)
|
25
|
-
* [<select-input>](#select-input)
|
26
|
-
* [<error-messages>](#error-messages)
|
27
|
-
* [<select-many>](#select-many)
|
28
|
-
* [<after-submit>](#after-submit)
|
29
|
-
* [<hidden-field>](#hidden-field)
|
30
|
-
* [<select-menu>](#select-menu)
|
31
|
-
|
32
|
-
|
33
|
-
---
|
34
|
-
|
35
|
-
<a name="hidden-fields"> </a>
|
36
|
-
## <hidden-fields>
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
### Attributes
|
41
|
-
|
42
|
-
* fields
|
43
|
-
* skip
|
44
|
-
* for-query-string
|
45
|
-
|
46
|
-
|
47
|
-
### Parameters
|
48
|
-
|
49
|
-
None
|
50
|
-
|
51
|
-
|
52
|
-
---
|
53
|
-
|
54
|
-
<a name="form"> </a>
|
55
|
-
## <form>
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
### Attributes
|
60
|
-
|
61
|
-
* update
|
62
|
-
* hidden-fields
|
63
|
-
* action
|
64
|
-
* method
|
65
|
-
* web-method
|
66
|
-
|
67
|
-
|
68
|
-
### Parameters
|
69
|
-
|
70
|
-
None
|
71
|
-
|
72
|
-
|
73
|
-
---
|
74
|
-
|
75
|
-
<a name="submit"> </a>
|
76
|
-
## <submit>
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
### Attributes (merged with [<input>](#input))
|
81
|
-
|
82
|
-
* label
|
83
|
-
* image
|
84
|
-
|
85
|
-
|
86
|
-
### Parameters
|
87
|
-
|
88
|
-
None
|
89
|
-
|
90
|
-
|
91
|
-
---
|
92
|
-
|
93
|
-
<a name="input"> </a>
|
94
|
-
## <input>
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
### Attributes
|
99
|
-
|
100
|
-
None
|
101
|
-
|
102
|
-
### Parameters
|
103
|
-
|
104
|
-
None
|
105
|
-
|
106
|
-
|
107
|
-
---
|
108
|
-
|
109
|
-
<a name="input--for-text"> </a>
|
110
|
-
## <input for=`"text"`>
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
### Attributes
|
115
|
-
|
116
|
-
* name
|
117
|
-
|
118
|
-
|
119
|
-
### Parameters
|
120
|
-
|
121
|
-
None
|
122
|
-
|
123
|
-
|
124
|
-
---
|
125
|
-
|
126
|
-
<a name="input--for-boolean"> </a>
|
127
|
-
## <input for=`"boolean"`>
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
### Attributes
|
132
|
-
|
133
|
-
* name
|
134
|
-
|
135
|
-
|
136
|
-
### Parameters
|
137
|
-
|
138
|
-
None
|
139
|
-
|
140
|
-
|
141
|
-
---
|
142
|
-
|
143
|
-
<a name="input--for-password"> </a>
|
144
|
-
## <input for=`"password"`>
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
### Attributes
|
149
|
-
|
150
|
-
* name
|
151
|
-
|
152
|
-
|
153
|
-
### Parameters
|
154
|
-
|
155
|
-
None
|
156
|
-
|
157
|
-
|
158
|
-
---
|
159
|
-
|
160
|
-
<a name="input--for-html"> </a>
|
161
|
-
## <input for=`"html"`>
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
### Attributes
|
166
|
-
|
167
|
-
* name
|
168
|
-
|
169
|
-
|
170
|
-
### Parameters
|
171
|
-
|
172
|
-
None
|
173
|
-
|
174
|
-
|
175
|
-
---
|
176
|
-
|
177
|
-
<a name="input--for-date"> </a>
|
178
|
-
## <input for=`"date"`>
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
### Attributes
|
183
|
-
|
184
|
-
* order
|
185
|
-
|
186
|
-
|
187
|
-
### Parameters
|
188
|
-
|
189
|
-
None
|
190
|
-
|
191
|
-
|
192
|
-
---
|
193
|
-
|
194
|
-
<a name="input--for-datetime"> </a>
|
195
|
-
## <input for=`"datetime"`>
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
### Attributes
|
200
|
-
|
201
|
-
* order
|
202
|
-
|
203
|
-
|
204
|
-
### Parameters
|
205
|
-
|
206
|
-
None
|
207
|
-
|
208
|
-
|
209
|
-
---
|
210
|
-
|
211
|
-
<a name="input--for-integer"> </a>
|
212
|
-
## <input for=`"integer"`>
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
### Attributes
|
217
|
-
|
218
|
-
* name
|
219
|
-
|
220
|
-
|
221
|
-
### Parameters
|
222
|
-
|
223
|
-
None
|
224
|
-
|
225
|
-
|
226
|
-
---
|
227
|
-
|
228
|
-
<a name="input--for-float"> </a>
|
229
|
-
## <input for=`"float"`>
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
### Attributes
|
234
|
-
|
235
|
-
* name
|
236
|
-
|
237
|
-
|
238
|
-
### Parameters
|
239
|
-
|
240
|
-
None
|
241
|
-
|
242
|
-
|
243
|
-
---
|
244
|
-
|
245
|
-
<a name="input--for-string"> </a>
|
246
|
-
## <input for=`"string"`>
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
### Attributes
|
251
|
-
|
252
|
-
* name
|
253
|
-
|
254
|
-
|
255
|
-
### Parameters
|
256
|
-
|
257
|
-
None
|
258
|
-
|
259
|
-
|
260
|
-
---
|
261
|
-
|
262
|
-
<a name="input--for-big_integer"> </a>
|
263
|
-
## <input for=`"big_integer"`>
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
### Attributes
|
268
|
-
|
269
|
-
* name
|
270
|
-
|
271
|
-
|
272
|
-
### Parameters
|
273
|
-
|
274
|
-
None
|
275
|
-
|
276
|
-
|
277
|
-
---
|
278
|
-
|
279
|
-
<a name="input--for-HoboFields::EnumString"> </a>
|
280
|
-
## <input for=`"HoboFields::EnumString"`>
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
### Attributes (merged with [<select>](#select))
|
285
|
-
|
286
|
-
* labels
|
287
|
-
* titleize
|
288
|
-
|
289
|
-
|
290
|
-
### Parameters
|
291
|
-
|
292
|
-
None
|
293
|
-
|
294
|
-
|
295
|
-
---
|
296
|
-
|
297
|
-
<a name="remote-method-button"> </a>
|
298
|
-
## <remote-method-button>
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
### Attributes
|
303
|
-
|
304
|
-
* method
|
305
|
-
* update
|
306
|
-
* label
|
307
|
-
|
308
|
-
|
309
|
-
### Parameters
|
310
|
-
|
311
|
-
None
|
312
|
-
|
313
|
-
|
314
|
-
---
|
315
|
-
|
316
|
-
<a name="update-button"> </a>
|
317
|
-
## <update-button>
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
### Attributes
|
322
|
-
|
323
|
-
* label
|
324
|
-
* update
|
325
|
-
* fields
|
326
|
-
* params
|
327
|
-
|
328
|
-
|
329
|
-
### Parameters
|
330
|
-
|
331
|
-
None
|
332
|
-
|
333
|
-
|
334
|
-
---
|
335
|
-
|
336
|
-
<a name="delete-button"> </a>
|
337
|
-
## <delete-button>
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
### Attributes
|
342
|
-
|
343
|
-
* label
|
344
|
-
* update
|
345
|
-
* in-place
|
346
|
-
* image
|
347
|
-
* confirm
|
348
|
-
* fade
|
349
|
-
* subsite
|
350
|
-
|
351
|
-
|
352
|
-
### Parameters
|
353
|
-
|
354
|
-
None
|
355
|
-
|
356
|
-
|
357
|
-
---
|
358
|
-
|
359
|
-
<a name="create-button"> </a>
|
360
|
-
## <create-button>
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
### Attributes
|
365
|
-
|
366
|
-
* model
|
367
|
-
* update
|
368
|
-
* label
|
369
|
-
* fields
|
370
|
-
* message
|
371
|
-
|
372
|
-
|
373
|
-
### Parameters
|
374
|
-
|
375
|
-
None
|
376
|
-
|
377
|
-
|
378
|
-
---
|
379
|
-
|
380
|
-
<a name="select-one"> </a>
|
381
|
-
## <select-one>
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
### Attributes (merged with [<select>](#select))
|
386
|
-
|
387
|
-
* include-none
|
388
|
-
* blank-message
|
389
|
-
* options
|
390
|
-
* sort
|
391
|
-
|
392
|
-
|
393
|
-
### Parameters
|
394
|
-
|
395
|
-
None
|
396
|
-
|
397
|
-
|
398
|
-
---
|
399
|
-
|
400
|
-
<a name="name-one"> </a>
|
401
|
-
## <name-one>
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
### Attributes (merged with [<input>](#input))
|
406
|
-
|
407
|
-
* complete-target
|
408
|
-
* completer
|
409
|
-
|
410
|
-
|
411
|
-
### Parameters
|
412
|
-
|
413
|
-
None
|
414
|
-
|
415
|
-
|
416
|
-
---
|
417
|
-
|
418
|
-
<a name="sti-type-input"> </a>
|
419
|
-
## <sti-type-input>
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
### Attributes
|
424
|
-
|
425
|
-
None
|
426
|
-
|
427
|
-
### Parameters
|
428
|
-
|
429
|
-
None
|
430
|
-
|
431
|
-
|
432
|
-
---
|
433
|
-
|
434
|
-
<a name="select-input"> </a>
|
435
|
-
## <select-input>
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
### Attributes
|
440
|
-
|
441
|
-
None
|
442
|
-
|
443
|
-
### Parameters
|
444
|
-
|
445
|
-
<ul><li><default:> (<do>)
|
446
|
-
</li>
|
447
|
-
</ul>
|
448
|
-
|
449
|
-
|
450
|
-
---
|
451
|
-
|
452
|
-
<a name="error-messages"> </a>
|
453
|
-
## <error-messages>
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
### Attributes (merged with [<section>](#section))
|
458
|
-
|
459
|
-
None
|
460
|
-
|
461
|
-
### Parameters
|
462
|
-
|
463
|
-
<ul><li><heading:> (<h2>)
|
464
|
-
</li>
|
465
|
-
<li><errors.full_messages:>
|
466
|
-
<ul><li><li:>
|
467
|
-
</li>
|
468
|
-
</ul></li>
|
469
|
-
</ul>
|
470
|
-
|
471
|
-
|
472
|
-
---
|
473
|
-
|
474
|
-
<a name="select-many"> </a>
|
475
|
-
## <select-many>
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
### Attributes (merged with [<div>](#div))
|
480
|
-
|
481
|
-
* options
|
482
|
-
* targets
|
483
|
-
* remove-label
|
484
|
-
* prompt
|
485
|
-
|
486
|
-
|
487
|
-
### Parameters
|
488
|
-
|
489
|
-
<ul><li><proto-item:> (<div>)
|
490
|
-
<ul><li><proto-hidden:> (<input>)
|
491
|
-
</li>
|
492
|
-
<li><proto-remove-button:> (<input>)
|
493
|
-
</li>
|
494
|
-
</ul></li>
|
495
|
-
<li><item:> (<div>)
|
496
|
-
<ul><li><hidden:> (<input>)
|
497
|
-
</li>
|
498
|
-
<li><remove-button:> (<input>)
|
499
|
-
</li>
|
500
|
-
</ul></li>
|
501
|
-
</ul>
|
502
|
-
|
503
|
-
|
504
|
-
---
|
505
|
-
|
506
|
-
<a name="after-submit"> </a>
|
507
|
-
## <after-submit>
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
### Attributes
|
512
|
-
|
513
|
-
* uri
|
514
|
-
* stay-here
|
515
|
-
* go-back
|
516
|
-
|
517
|
-
|
518
|
-
### Parameters
|
519
|
-
|
520
|
-
None
|
521
|
-
|
522
|
-
|
523
|
-
---
|
524
|
-
|
525
|
-
<a name="hidden-field"> </a>
|
526
|
-
## <hidden-field>
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
### Attributes (merged with [<input>](#input))
|
531
|
-
|
532
|
-
* name
|
533
|
-
* value
|
534
|
-
|
535
|
-
|
536
|
-
### Parameters
|
537
|
-
|
538
|
-
None
|
539
|
-
|
540
|
-
|
541
|
-
---
|
542
|
-
|
543
|
-
<a name="select-menu"> </a>
|
544
|
-
## <select-menu>
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
### Attributes (merged with [<select>](#select))
|
549
|
-
|
550
|
-
* options
|
551
|
-
* selected
|
552
|
-
* first-option
|
553
|
-
* first-value
|
554
|
-
|
555
|
-
|
556
|
-
### Parameters
|
557
|
-
|
558
|
-
<ul><li><default:> (<select>)
|
559
|
-
<ul><li><options:> (<do>)
|
560
|
-
</li>
|
561
|
-
</ul></li>
|
562
|
-
</ul>
|