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,187 +0,0 @@
|
|
1
|
-
# Rapid Generics
|
2
|
-
|
3
|
-
* [<creation-details>](#creation-details)
|
4
|
-
* [<primary-content>](#primary-content)
|
5
|
-
* [<association-count>](#association-count)
|
6
|
-
* [<base-card>](#base-card)
|
7
|
-
* [<card>](#card)
|
8
|
-
* [<search-card>](#search-card)
|
9
|
-
* [<collection>](#collection)
|
10
|
-
* [<base-collection>](#base-collection)
|
11
|
-
* [<collection-preview>](#collection-preview)
|
12
|
-
|
13
|
-
|
14
|
-
---
|
15
|
-
|
16
|
-
<a name="creation-details"> </a>
|
17
|
-
## <creation-details>
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
### Attributes
|
22
|
-
|
23
|
-
None
|
24
|
-
|
25
|
-
### Parameters
|
26
|
-
|
27
|
-
<ul><li><by:> (<view>)
|
28
|
-
</li>
|
29
|
-
<li><at:> (<created_at>)
|
30
|
-
</li>
|
31
|
-
</ul>
|
32
|
-
|
33
|
-
|
34
|
-
---
|
35
|
-
|
36
|
-
<a name="primary-content"> </a>
|
37
|
-
## <primary-content>
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
### Attributes (merged with [<view>](#view))
|
42
|
-
|
43
|
-
None
|
44
|
-
|
45
|
-
### Parameters (merged with [<view>](#view))
|
46
|
-
|
47
|
-
None
|
48
|
-
|
49
|
-
|
50
|
-
---
|
51
|
-
|
52
|
-
<a name="association-count"> </a>
|
53
|
-
## <association-count>
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
### Attributes (merged with [<a>](#a))
|
58
|
-
|
59
|
-
None
|
60
|
-
|
61
|
-
### Parameters (merged with [<a>](#a))
|
62
|
-
|
63
|
-
None
|
64
|
-
|
65
|
-
|
66
|
-
---
|
67
|
-
|
68
|
-
<a name="base-card"> </a>
|
69
|
-
## <base-card>
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
### Attributes (merged with [<div>](#div))
|
74
|
-
|
75
|
-
None
|
76
|
-
|
77
|
-
### Parameters
|
78
|
-
|
79
|
-
<ul><li><edit-link:> (<a>)
|
80
|
-
</li>
|
81
|
-
<li><delete-button:>
|
82
|
-
</li>
|
83
|
-
<li><heading:> (<h3>)
|
84
|
-
</li>
|
85
|
-
<li><content:> (<div>)
|
86
|
-
</li>
|
87
|
-
<li><creation-details:>
|
88
|
-
</li>
|
89
|
-
<li><counter:> (<do>)
|
90
|
-
</li>
|
91
|
-
</ul>
|
92
|
-
|
93
|
-
|
94
|
-
---
|
95
|
-
|
96
|
-
<a name="card"> </a>
|
97
|
-
## <card>
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
### Attributes (merged with [<base-card>](#base-card))
|
102
|
-
|
103
|
-
None
|
104
|
-
|
105
|
-
### Parameters (merged with [<base-card>](#base-card))
|
106
|
-
|
107
|
-
None
|
108
|
-
|
109
|
-
|
110
|
-
---
|
111
|
-
|
112
|
-
<a name="search-card"> </a>
|
113
|
-
## <search-card>
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
### Attributes
|
118
|
-
|
119
|
-
None
|
120
|
-
|
121
|
-
### Parameters
|
122
|
-
|
123
|
-
None
|
124
|
-
|
125
|
-
|
126
|
-
---
|
127
|
-
|
128
|
-
<a name="collection"> </a>
|
129
|
-
## <collection>
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
### Attributes (merged with [<base-collection>](#base-collection))
|
134
|
-
|
135
|
-
None
|
136
|
-
|
137
|
-
### Parameters (merged with [<base-collection>](#base-collection))
|
138
|
-
|
139
|
-
<ul><li><empty-message:> (<p>)
|
140
|
-
</li>
|
141
|
-
</ul>
|
142
|
-
|
143
|
-
|
144
|
-
---
|
145
|
-
|
146
|
-
<a name="base-collection"> </a>
|
147
|
-
## <base-collection>
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
### Attributes (merged with [<ul>](#ul))
|
152
|
-
|
153
|
-
* sortable
|
154
|
-
* sortable-options
|
155
|
-
|
156
|
-
|
157
|
-
### Parameters
|
158
|
-
|
159
|
-
<ul><li><li:>
|
160
|
-
<ul><li><handle:> (<div>)
|
161
|
-
</li>
|
162
|
-
<li><card:>
|
163
|
-
</li>
|
164
|
-
</ul></li>
|
165
|
-
</ul>
|
166
|
-
|
167
|
-
|
168
|
-
---
|
169
|
-
|
170
|
-
<a name="collection-preview"> </a>
|
171
|
-
## <collection-preview>
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
### Attributes (merged with [<div>](#div))
|
176
|
-
|
177
|
-
* limit
|
178
|
-
* if-any
|
179
|
-
|
180
|
-
|
181
|
-
### Parameters (merged with [<collection>](#collection))
|
182
|
-
|
183
|
-
<ul><li><heading:> (<do>)
|
184
|
-
</li>
|
185
|
-
<li><show-all-link:> (<span>)
|
186
|
-
</li>
|
187
|
-
</ul>
|
@@ -1,214 +0,0 @@
|
|
1
|
-
# Rapid Navigation
|
2
|
-
|
3
|
-
* [<navigation>](#navigation)
|
4
|
-
* [<nav-item>](#nav-item)
|
5
|
-
* [<main-nav>](#main-nav)
|
6
|
-
* [<account-nav>](#account-nav)
|
7
|
-
* [<page-nav>](#page-nav)
|
8
|
-
* [<page-n-of-count>](#page-n-of-count)
|
9
|
-
* [<previous-page-link>](#previous-page-link)
|
10
|
-
* [<next-page-link>](#next-page-link)
|
11
|
-
* [<first-page-link>](#first-page-link)
|
12
|
-
* [<last-page-link>](#last-page-link)
|
13
|
-
* [<magic-nav>](#magic-nav)
|
14
|
-
|
15
|
-
|
16
|
-
---
|
17
|
-
|
18
|
-
<a name="navigation"> </a>
|
19
|
-
## <navigation>
|
20
|
-
|
21
|
-
General purpose navigation bar. Renders a `<ul class="navigation">`
|
22
|
-
|
23
|
-
### Attributes (merged with [<ul>](#ul))
|
24
|
-
|
25
|
-
* current
|
26
|
-
|
27
|
-
|
28
|
-
### Parameters
|
29
|
-
|
30
|
-
<ul><li><default:> (<do>)
|
31
|
-
</li>
|
32
|
-
</ul>
|
33
|
-
|
34
|
-
|
35
|
-
---
|
36
|
-
|
37
|
-
<a name="nav-item"> </a>
|
38
|
-
## <nav-item>
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
### Attributes (merged with [<li>](#li))
|
43
|
-
|
44
|
-
None
|
45
|
-
|
46
|
-
### Parameters
|
47
|
-
|
48
|
-
None
|
49
|
-
|
50
|
-
|
51
|
-
---
|
52
|
-
|
53
|
-
<a name="main-nav"> </a>
|
54
|
-
## <main-nav>
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
### Attributes
|
59
|
-
|
60
|
-
None
|
61
|
-
|
62
|
-
### Parameters
|
63
|
-
|
64
|
-
None
|
65
|
-
|
66
|
-
|
67
|
-
---
|
68
|
-
|
69
|
-
<a name="account-nav"> </a>
|
70
|
-
## <account-nav>
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
### Attributes
|
75
|
-
|
76
|
-
None
|
77
|
-
|
78
|
-
### Parameters
|
79
|
-
|
80
|
-
<ul><li><ul:>
|
81
|
-
<ul><li><logged-in-as:> (<li>)
|
82
|
-
</li>
|
83
|
-
<li><account:> (<li>)
|
84
|
-
</li>
|
85
|
-
<li><log-out:> (<li>)
|
86
|
-
</li>
|
87
|
-
<li><log-in:> (<li>)
|
88
|
-
</li>
|
89
|
-
<li><sign-up:> (<li>)
|
90
|
-
</li>
|
91
|
-
</ul></li>
|
92
|
-
</ul>
|
93
|
-
|
94
|
-
|
95
|
-
---
|
96
|
-
|
97
|
-
<a name="page-nav"> </a>
|
98
|
-
## <page-nav>
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
### Attributes
|
103
|
-
|
104
|
-
* params
|
105
|
-
|
106
|
-
|
107
|
-
### Parameters
|
108
|
-
|
109
|
-
None
|
110
|
-
|
111
|
-
|
112
|
-
---
|
113
|
-
|
114
|
-
<a name="page-n-of-count"> </a>
|
115
|
-
## <page-n-of-count>
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
### Attributes
|
120
|
-
|
121
|
-
None
|
122
|
-
|
123
|
-
### Parameters
|
124
|
-
|
125
|
-
None
|
126
|
-
|
127
|
-
|
128
|
-
---
|
129
|
-
|
130
|
-
<a name="previous-page-link"> </a>
|
131
|
-
## <previous-page-link>
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
### Attributes
|
136
|
-
|
137
|
-
None
|
138
|
-
|
139
|
-
### Parameters
|
140
|
-
|
141
|
-
<ul><li><default:> (<do>)
|
142
|
-
</li>
|
143
|
-
</ul>
|
144
|
-
|
145
|
-
|
146
|
-
---
|
147
|
-
|
148
|
-
<a name="next-page-link"> </a>
|
149
|
-
## <next-page-link>
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
### Attributes
|
154
|
-
|
155
|
-
None
|
156
|
-
|
157
|
-
### Parameters
|
158
|
-
|
159
|
-
<ul><li><default:> (<do>)
|
160
|
-
</li>
|
161
|
-
</ul>
|
162
|
-
|
163
|
-
|
164
|
-
---
|
165
|
-
|
166
|
-
<a name="first-page-link"> </a>
|
167
|
-
## <first-page-link>
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
### Attributes
|
172
|
-
|
173
|
-
None
|
174
|
-
|
175
|
-
### Parameters
|
176
|
-
|
177
|
-
<ul><li><default:> (<do>)
|
178
|
-
</li>
|
179
|
-
</ul>
|
180
|
-
|
181
|
-
|
182
|
-
---
|
183
|
-
|
184
|
-
<a name="last-page-link"> </a>
|
185
|
-
## <last-page-link>
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
### Attributes
|
190
|
-
|
191
|
-
None
|
192
|
-
|
193
|
-
### Parameters
|
194
|
-
|
195
|
-
<ul><li><default:> (<do>)
|
196
|
-
</li>
|
197
|
-
</ul>
|
198
|
-
|
199
|
-
|
200
|
-
---
|
201
|
-
|
202
|
-
<a name="magic-nav"> </a>
|
203
|
-
## <magic-nav>
|
204
|
-
|
205
|
-
magic nav, just to get you started. Don't try to customise this
|
206
|
-
but rather write your own navigation using the `<navigation>` tag
|
207
|
-
|
208
|
-
### Attributes (merged with [<navigation>](#navigation))
|
209
|
-
|
210
|
-
None
|
211
|
-
|
212
|
-
### Parameters
|
213
|
-
|
214
|
-
None
|
@@ -1,530 +0,0 @@
|
|
1
|
-
# Rapid Pages
|
2
|
-
|
3
|
-
* [<base-page>](#base-page)
|
4
|
-
* [<simple-layout>](#simple-layout)
|
5
|
-
* [<aside-layout>](#aside-layout)
|
6
|
-
* [<page>](#page)
|
7
|
-
* [<index-page>](#index-page)
|
8
|
-
* [<new-page>](#new-page)
|
9
|
-
* [<show-page>](#show-page)
|
10
|
-
* [<edit-page>](#edit-page)
|
11
|
-
* [<new-in-collection-page>](#new-in-collection-page)
|
12
|
-
* [<show-collection-page>](#show-collection-page)
|
13
|
-
* [<permission-denied-page>](#permission-denied-page)
|
14
|
-
* [<not-found-page>](#not-found-page)
|
15
|
-
* [<doctype>](#doctype)
|
16
|
-
* [<stylesheet>](#stylesheet)
|
17
|
-
* [<javascript>](#javascript)
|
18
|
-
* [<flash-message>](#flash-message)
|
19
|
-
* [<ajax-progress>](#ajax-progress)
|
20
|
-
* [<default-page-title>](#default-page-title)
|
21
|
-
* [<with-primary-collection>](#with-primary-collection)
|
22
|
-
|
23
|
-
|
24
|
-
---
|
25
|
-
|
26
|
-
<a name="base-page"> </a>
|
27
|
-
## <base-page>
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
### Attributes
|
32
|
-
|
33
|
-
* title
|
34
|
-
* full-title
|
35
|
-
* doctype
|
36
|
-
|
37
|
-
|
38
|
-
### Parameters
|
39
|
-
|
40
|
-
<ul><li><doctype:>
|
41
|
-
</li>
|
42
|
-
<li><head:>
|
43
|
-
<ul><li><title:>
|
44
|
-
</li>
|
45
|
-
<li><stylesheets:> (<do>)
|
46
|
-
</li>
|
47
|
-
<li><scripts:> (<do>)
|
48
|
-
<ul><li><javascript:>
|
49
|
-
</li>
|
50
|
-
<li><fix-ie6:> (<do>)
|
51
|
-
</li>
|
52
|
-
<li><hobo-rapid-javascripts:>
|
53
|
-
</li>
|
54
|
-
</ul></li>
|
55
|
-
</ul></li>
|
56
|
-
<li><body:>
|
57
|
-
</li>
|
58
|
-
</ul>
|
59
|
-
|
60
|
-
|
61
|
-
---
|
62
|
-
|
63
|
-
<a name="simple-layout"> </a>
|
64
|
-
## <simple-layout>
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
### Attributes (merged with [<base-page>](#base-page))
|
69
|
-
|
70
|
-
None
|
71
|
-
|
72
|
-
### Parameters (merged with [<base-page>](#base-page))
|
73
|
-
|
74
|
-
<ul><li><body:>
|
75
|
-
<ul><li><header:>
|
76
|
-
<ul><li><app-name:> (<heading>)
|
77
|
-
</li>
|
78
|
-
<li><live-search:>
|
79
|
-
</li>
|
80
|
-
<li><nav:>
|
81
|
-
<ul><li><account-nav:>
|
82
|
-
</li>
|
83
|
-
<li><main-nav:>
|
84
|
-
</li>
|
85
|
-
</ul></li>
|
86
|
-
</ul></li>
|
87
|
-
<li><content:> (<section>)
|
88
|
-
<ul><li><flash-message:>
|
89
|
-
</li>
|
90
|
-
<li><flash-message:>
|
91
|
-
</li>
|
92
|
-
<li><content-header:> (<header>)
|
93
|
-
</li>
|
94
|
-
<li><content-body:> (<section>)
|
95
|
-
</li>
|
96
|
-
<li><content-footer:> (<footer>)
|
97
|
-
</li>
|
98
|
-
</ul></li>
|
99
|
-
<li><footer:>
|
100
|
-
</li>
|
101
|
-
</ul></li>
|
102
|
-
</ul>
|
103
|
-
|
104
|
-
|
105
|
-
---
|
106
|
-
|
107
|
-
<a name="aside-layout"> </a>
|
108
|
-
## <aside-layout>
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
### Attributes (merged with [<simple-layout>](#simple-layout))
|
113
|
-
|
114
|
-
None
|
115
|
-
|
116
|
-
### Parameters (merged with [<simple-layout>](#simple-layout))
|
117
|
-
|
118
|
-
<ul><li><body:>
|
119
|
-
</li>
|
120
|
-
<li><content:>
|
121
|
-
<ul><li><main-content:> (<section>)
|
122
|
-
</li>
|
123
|
-
<li><aside:>
|
124
|
-
</li>
|
125
|
-
</ul></li>
|
126
|
-
</ul>
|
127
|
-
|
128
|
-
|
129
|
-
---
|
130
|
-
|
131
|
-
<a name="page"> </a>
|
132
|
-
## <page>
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
### Attributes (merged with [<call-tag>](#call-tag))
|
137
|
-
|
138
|
-
* layout
|
139
|
-
|
140
|
-
|
141
|
-
### Parameters (merged with [<call-tag>](#call-tag))
|
142
|
-
|
143
|
-
None
|
144
|
-
|
145
|
-
|
146
|
-
---
|
147
|
-
|
148
|
-
<a name="index-page"> </a>
|
149
|
-
## <index-page>
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
### Attributes (merged with [<page>](#page))
|
154
|
-
|
155
|
-
None
|
156
|
-
|
157
|
-
### Parameters (merged with [<page>](#page))
|
158
|
-
|
159
|
-
<ul><li><body:>
|
160
|
-
</li>
|
161
|
-
<li><content-header:>
|
162
|
-
<ul><li><heading:>
|
163
|
-
</li>
|
164
|
-
<li><count:> (<p>)
|
165
|
-
</li>
|
166
|
-
</ul></li>
|
167
|
-
<li><content-body:>
|
168
|
-
<ul><li><top-pagination-nav:> (<nav>)
|
169
|
-
</li>
|
170
|
-
<li><collection:>
|
171
|
-
</li>
|
172
|
-
<li><bottom-pagination-nav:> (<nav>)
|
173
|
-
</li>
|
174
|
-
</ul></li>
|
175
|
-
<li><content-footer:>
|
176
|
-
<ul><li><new-link:> (<a>)
|
177
|
-
</li>
|
178
|
-
<li><new-field-list:> (<field-list>)
|
179
|
-
</li>
|
180
|
-
</ul></li>
|
181
|
-
</ul>
|
182
|
-
|
183
|
-
|
184
|
-
---
|
185
|
-
|
186
|
-
<a name="new-page"> </a>
|
187
|
-
## <new-page>
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
### Attributes (merged with [<page>](#page))
|
192
|
-
|
193
|
-
None
|
194
|
-
|
195
|
-
### Parameters (merged with [<page>](#page))
|
196
|
-
|
197
|
-
<ul><li><body:>
|
198
|
-
</li>
|
199
|
-
<li><content-header:>
|
200
|
-
<ul><li><heading:>
|
201
|
-
</li>
|
202
|
-
</ul></li>
|
203
|
-
<li><content-body:>
|
204
|
-
<ul><li><error-messages:>
|
205
|
-
</li>
|
206
|
-
<li><form:>
|
207
|
-
<ul><li><field-list:>
|
208
|
-
</li>
|
209
|
-
<li><actions:> (<div>)
|
210
|
-
<ul><li><submit:>
|
211
|
-
</li>
|
212
|
-
<li><back-link:> (<do>)
|
213
|
-
</li>
|
214
|
-
</ul></li>
|
215
|
-
</ul></li>
|
216
|
-
</ul></li>
|
217
|
-
</ul>
|
218
|
-
|
219
|
-
|
220
|
-
---
|
221
|
-
|
222
|
-
<a name="show-page"> </a>
|
223
|
-
## <show-page>
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
### Attributes (merged with [<page>](#page))
|
228
|
-
|
229
|
-
* primary-collection
|
230
|
-
|
231
|
-
|
232
|
-
### Parameters (merged with [<page>](#page))
|
233
|
-
|
234
|
-
<ul><li><body:>
|
235
|
-
</li>
|
236
|
-
<li><content-header:>
|
237
|
-
<ul><li><heading:>
|
238
|
-
</li>
|
239
|
-
<li><creation-details:>
|
240
|
-
</li>
|
241
|
-
<li><primary-collection-count:> (<do>)
|
242
|
-
</li>
|
243
|
-
<li><edit-link:> (<a>)
|
244
|
-
</li>
|
245
|
-
</ul></li>
|
246
|
-
<li><content-body:>
|
247
|
-
<ul><li><primary-content:>
|
248
|
-
</li>
|
249
|
-
<li><field-list:>
|
250
|
-
</li>
|
251
|
-
<li><primary-collection-title:> (<h2>)
|
252
|
-
</li>
|
253
|
-
<li><primary-collection:> (<do>)
|
254
|
-
</li>
|
255
|
-
<li><primary-collection-add:> (<if>)
|
256
|
-
<ul><li><primary-collection-field-list:> (<field-list>)
|
257
|
-
</li>
|
258
|
-
</ul></li>
|
259
|
-
</ul></li>
|
260
|
-
<li><aside:>
|
261
|
-
</li>
|
262
|
-
</ul>
|
263
|
-
|
264
|
-
|
265
|
-
---
|
266
|
-
|
267
|
-
<a name="edit-page"> </a>
|
268
|
-
## <edit-page>
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
### Attributes (merged with [<page>](#page))
|
273
|
-
|
274
|
-
None
|
275
|
-
|
276
|
-
### Parameters (merged with [<page>](#page))
|
277
|
-
|
278
|
-
<ul><li><body:>
|
279
|
-
</li>
|
280
|
-
<li><content-header:>
|
281
|
-
<ul><li><heading:>
|
282
|
-
</li>
|
283
|
-
<li><delete-button:>
|
284
|
-
</li>
|
285
|
-
</ul></li>
|
286
|
-
<li><content-body:>
|
287
|
-
<ul><li><error-messages:>
|
288
|
-
</li>
|
289
|
-
<li><form:>
|
290
|
-
<ul><li><field-list:>
|
291
|
-
</li>
|
292
|
-
<li><actions:> (<div>)
|
293
|
-
<ul><li><submit:>
|
294
|
-
</li>
|
295
|
-
<li><back-link:> (<do>)
|
296
|
-
</li>
|
297
|
-
</ul></li>
|
298
|
-
</ul></li>
|
299
|
-
</ul></li>
|
300
|
-
</ul>
|
301
|
-
|
302
|
-
|
303
|
-
---
|
304
|
-
|
305
|
-
<a name="new-in-collection-page"> </a>
|
306
|
-
## <new-in-collection-page>
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
### Attributes (merged with [<page>](#page))
|
311
|
-
|
312
|
-
None
|
313
|
-
|
314
|
-
### Parameters (merged with [<page>](#page))
|
315
|
-
|
316
|
-
<ul><li><body:>
|
317
|
-
</li>
|
318
|
-
<li><content-header:>
|
319
|
-
<ul><li><heading:>
|
320
|
-
</li>
|
321
|
-
<li><sub-heading:>
|
322
|
-
</li>
|
323
|
-
</ul></li>
|
324
|
-
<li><content-body:>
|
325
|
-
<ul><li><form:>
|
326
|
-
<ul><li><field-list:>
|
327
|
-
</li>
|
328
|
-
<li><actions:> (<div>)
|
329
|
-
<ul><li><submit:>
|
330
|
-
</li>
|
331
|
-
<li><back-link:> (<do>)
|
332
|
-
</li>
|
333
|
-
</ul></li>
|
334
|
-
</ul></li>
|
335
|
-
</ul></li>
|
336
|
-
</ul>
|
337
|
-
|
338
|
-
|
339
|
-
---
|
340
|
-
|
341
|
-
<a name="show-collection-page"> </a>
|
342
|
-
## <show-collection-page>
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
### Attributes (merged with [<page>](#page))
|
347
|
-
|
348
|
-
None
|
349
|
-
|
350
|
-
### Parameters (merged with [<page>](#page))
|
351
|
-
|
352
|
-
<ul><li><body:>
|
353
|
-
</li>
|
354
|
-
<li><content-header:>
|
355
|
-
</li>
|
356
|
-
<li><content-body:>
|
357
|
-
<ul><li><top-pagination-nav:> (<nav>)
|
358
|
-
</li>
|
359
|
-
<li><bottom-pagination-nav:> (<nav>)
|
360
|
-
<ul><li><page-nav:>
|
361
|
-
</li>
|
362
|
-
</ul></li>
|
363
|
-
<li><new-link:> (<nav>)
|
364
|
-
</li>
|
365
|
-
</ul></li>
|
366
|
-
</ul>
|
367
|
-
|
368
|
-
|
369
|
-
---
|
370
|
-
|
371
|
-
<a name="permission-denied-page"> </a>
|
372
|
-
## <permission-denied-page>
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
### Attributes (merged with [<page>](#page))
|
377
|
-
|
378
|
-
* message
|
379
|
-
|
380
|
-
|
381
|
-
### Parameters (merged with [<page>](#page))
|
382
|
-
|
383
|
-
<ul><li><content-header:>
|
384
|
-
<ul><li><heading:>
|
385
|
-
</li>
|
386
|
-
</ul></li>
|
387
|
-
</ul>
|
388
|
-
|
389
|
-
|
390
|
-
---
|
391
|
-
|
392
|
-
<a name="not-found-page"> </a>
|
393
|
-
## <not-found-page>
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
### Attributes (merged with [<page>](#page))
|
398
|
-
|
399
|
-
* message
|
400
|
-
|
401
|
-
|
402
|
-
### Parameters (merged with [<page>](#page))
|
403
|
-
|
404
|
-
<ul><li><content-header:>
|
405
|
-
<ul><li><heading:>
|
406
|
-
</li>
|
407
|
-
</ul></li>
|
408
|
-
</ul>
|
409
|
-
|
410
|
-
|
411
|
-
---
|
412
|
-
|
413
|
-
<a name="doctype"> </a>
|
414
|
-
## <doctype>
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
### Attributes
|
419
|
-
|
420
|
-
* version
|
421
|
-
|
422
|
-
|
423
|
-
### Parameters
|
424
|
-
|
425
|
-
None
|
426
|
-
|
427
|
-
|
428
|
-
---
|
429
|
-
|
430
|
-
<a name="stylesheet"> </a>
|
431
|
-
## <stylesheet>
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
### Attributes
|
436
|
-
|
437
|
-
* name
|
438
|
-
* media
|
439
|
-
|
440
|
-
|
441
|
-
### Parameters
|
442
|
-
|
443
|
-
None
|
444
|
-
|
445
|
-
|
446
|
-
---
|
447
|
-
|
448
|
-
<a name="javascript"> </a>
|
449
|
-
## <javascript>
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
### Attributes
|
454
|
-
|
455
|
-
* name
|
456
|
-
|
457
|
-
|
458
|
-
### Parameters
|
459
|
-
|
460
|
-
None
|
461
|
-
|
462
|
-
|
463
|
-
---
|
464
|
-
|
465
|
-
<a name="flash-message"> </a>
|
466
|
-
## <flash-message>
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
### Attributes (merged with [<div>](#div))
|
471
|
-
|
472
|
-
* type
|
473
|
-
|
474
|
-
|
475
|
-
### Parameters
|
476
|
-
|
477
|
-
None
|
478
|
-
|
479
|
-
|
480
|
-
---
|
481
|
-
|
482
|
-
<a name="ajax-progress"> </a>
|
483
|
-
## <ajax-progress>
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
### Attributes
|
488
|
-
|
489
|
-
None
|
490
|
-
|
491
|
-
### Parameters
|
492
|
-
|
493
|
-
None
|
494
|
-
|
495
|
-
|
496
|
-
---
|
497
|
-
|
498
|
-
<a name="default-page-title"> </a>
|
499
|
-
## <default-page-title>
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
### Attributes
|
504
|
-
|
505
|
-
None
|
506
|
-
|
507
|
-
### Parameters
|
508
|
-
|
509
|
-
None
|
510
|
-
|
511
|
-
|
512
|
-
---
|
513
|
-
|
514
|
-
<a name="with-primary-collection"> </a>
|
515
|
-
## <with-primary-collection>
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
### Attributes
|
520
|
-
|
521
|
-
* name
|
522
|
-
|
523
|
-
|
524
|
-
### Parameters
|
525
|
-
|
526
|
-
<ul><li><default:> (<do>)
|
527
|
-
</li>
|
528
|
-
<li><default:> (<do>)
|
529
|
-
</li>
|
530
|
-
</ul>
|