-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzen.request.yml
420 lines (402 loc) · 21.2 KB
/
zen.request.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
# -- General Info --------------------------------------------------------------
host : localhost
port : 1337
# -- Tests ---------------------------------------------------------------------
tests:
- tutorial
# -- Tutorial ------------------------------------------------------------------
tutorials:
- chapter : 0
subchapter : 0
title : Bienvenidos a Aprende Atoms.js
readme : /www/assets/documentation/html/0.html
yaml : >
children:
- Organism.Section:
id: example
style: padding active
children:
- Atom.Heading:
size: h1
value: Welcome to learn Atoms.js
- Atom.Button:
text: START
style: fluid accept
events:
- touch
id: main
code : >
{"children":[{"Organism.Section":{"id":"example","style":"padding active","children":[{"Atom.Heading":{"size":"h1","value":"Welcome to learn Atoms.js"}},{"Atom.Button":{"events":["touch"],"text":"START","style":"fluid accept"}}]}}],"id":"main"}
- chapter : 1
subchapter : 1.1
title : Bienvenidos a Atoms.js
readme : /www/assets/documentation/html/1-1.html
yaml : >
children:
- Organism.Header:
id: header
children:
- Atom.Heading:
id: title
style: left
value: 1. Title Chapter
- Organism.Section:
id: section
style: active padding
children:
- Molecule.Div:
id: doc
children:
- Atom.Text:
value: Welcome to Learn Atoms.js.
- Atom.Button:
style: fluid big
text: accept
icon: user
style: active
code : >
{"id":"course","children":[{"Organism.Header":{"id":"header","children":[{"Atom.Heading":{"id":"title","style":"left","value":"1. Title Chapter"}}]}},{"Organism.Section":{"id":"section","style":"active padding","children":[{"Molecule.Div":{"id":"doc","children":[{"Atom.Text":{"value":"Welcome to Learn Atoms.js."}}]}},{"Atom.Button":{"style":"fluid big","text":"accept","icon":"user"}}]}}],"style":"active"}
- chapter : 2
subchapter : 2.1
title : Sesión
readme : /www/assets/documentation/html/2-1.html
yaml : >
children:
- Organism.Section:
style: centered padding active
id: main
children:
- Molecule.Form:
events:
- submit
children:
- Atom.Input:
type: text
name: mail
placeholder: E-mail...
style: align center big
- Atom.Input:
type: password
name: password
placeholder: Your password...
style: align center big
- Atom.Button:
events:
- touch
style: fluid theme big
text: Log in
- Atom.Button:
events:
- touch
style: fluid big
text: "I'm not a member"
- Molecule.Div:
children:
- Atom.Link:
text: Remember my password
href: /remember
id: session
code : >
{"id":"session","children":[{"Organism.Section":{"style":"centered padding active","id":"main","children":[{"Molecule.Form":{"events":["submit"],"children":[{"Atom.Input":{"type":"text","name":"mail","placeholder":"E-mail...","style":"align center big"}},{"Atom.Input":{"type":"password","name":"password","placeholder":"Your password...","style":"align center big"}},{"Atom.Button":{"events":["touch"],"style":"fluid theme big","text":"Log in"}},{"Atom.Button":{"events":["touch"],"style":"fluid big","text":"I'm not a member"}}]}},{"Molecule.Div":{"children":[{"Atom.Link":{"text":"Remember my password","href":"/remember"}}]}}]}}]}
- chapter : 3
subchapter : 3.1
title : Formularios
readme : /www/assets/documentation/html/3-1.html
yaml : >
children:
- Organism.Section:
style: padding active
id: info
children:
- Molecule.Form:
events:
- submit
children:
- Atom.Label:
value: Personal Information
style: margin-bottom
- Atom.Input:
type: text
placeholder: Your name...
style: big
- Atom.Input:
type: number
name: phone
placeholder: Your phone number...
required: "true"
style: big
- Atom.Textarea:
name: address
placeholder: Your address...
style: small
- Atom.Label:
value: Allergies
style: margin-bottom
- Atom.Select:
name: allergies
options:
- label: select...
value: 0
- label: Pollen
value: 1
- label: Dust Mite
value: 2
- label: Mold
value: 3
- Atom.Label:
value: Doctor
- Atom.AutoComplete:
placeholder: Name...
name: doctor
options:
- label: Zaldua
value: 1
- label: Espinosa
value: 2
- label: Sainz
value: 3
- label: Perfecto
value: 4
- label: Allen
value: 4
- Atom.Label:
value: Birth
- Atom.Input:
type: date
name: birth
- Atom.Button:
events:
- touch
style: big accept fluid
icon: diskette
text: Save
- Atom.Button:
events:
- touch
style: big cancel fluid
icon: trash
text: Cancel
id: form
code : >
{"id":"form","children":[{"Organism.Section":{"style":"padding active","id":"info","children":[{"Molecule.Form":{"events":["submit"],"children":[{"Atom.Label":{"value":"Personal Information","style":"margin-bottom"}},{"Atom.Input":{"type":"text","placeholder":"Your name...","style":"big"}},{"Atom.Input":{"type":"number","name":"phone","placeholder":"Your phone number...","required":"true","style":"big"}},{"Atom.Textarea":{"name":"address","placeholder":"Your address...","style":"small"}},{"Atom.Label":{"value":"Allergies","style":"margin-bottom"}},{"Atom.Select":{"name":"allergies","options":[{"label":"select...","value":0},{"label":"Pollen","value":1},{"label":"Dust Mite","value":2},{"label":"Mold","value":3}]}},{"Atom.Label":{"value":"Doctor"}},{"Atom.AutoComplete":{"placeholder":"Name...","name":"doctor","options":[{"label":"Zaldua","value":1},{"label":"Espinosa","value":2},{"label":"Sainz","value":3},{"label":"Perfecto","value":4},{"label":"Allen","value":4}]}},{"Atom.Label":{"value":"Birth"}},{"Atom.Input":{"type":"date","name":"birth"}},{"Atom.Button":{"events":["touch"],"style":"big accept fluid","icon":"diskette","text":"Save"}},{"Atom.Button":{"events":["touch"],"style":"big cancel fluid","icon":"trash","text":"Cancel"}}]}}]}}]}
- chapter : 4
subchapter : 4.1
title : Listas
readme : /www/assets/documentation/html/4-1.html
yaml : >
children:
- Organism.Header:
children:
- Atom.Heading:
size: h1
value: Listas
- Organism.Section:
children:
- Molecule.Search:
children: []
events:
- submit
style: "margin-top\n"
- Molecule.List:
children:
- Atom.Li:
image: "http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/06072011134639_ageratum-houstonianum-blue-194172.jpg"
description: "Hay que plantarla a pleno sol, aunque en climas calurosos también puede estar en semisombra. "
text: Agerato celestino
info: 0°C
- Atom.Li:
image: "http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/TEM_002.jpg"
text: "Calendaria 'Millas"
description: "Planta anual. Precisa riego moderado.. Mes de floración: VI-VIII"
info: < -1°C
- Atom.Li:
text: Cresta de gallo
image: "http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/TEM_017.jpg"
description: "Planta anual. Precisa riego moderado. Mes de floración: V-IX"
info: 0°C
- Atom.Li:
description: "Necesita un lugar a pleno sol y un suelo neutro, rico y húmedo, pero con buen drenaje."
image: "http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/01092011133929_helianthus-annuus-abendsonne-14002115.jpg"
text: Girasol
info: < -1°C
style: margin-top
- Molecule.Div:
children:
- Atom.Label:
value: Plantas del mes
- Molecule.List:
children:
- Atom.Li:
text: Aurinia saxatilis
description: Cestillo de oro
- Atom.Li:
text: Camellia japonica
description: Arbusto o arbolillo de flores grandes
bind: {}
id: list
style: active
id: main
code : >
{"children":[{"Organism.Header":{"children":[{"Atom.Heading":{"size":"h1","value":"Listas"}}]}},{"Organism.Section":{"children":[{"Molecule.Search":{"children":[],"events":["submit"],"style":"margin-top\n"}},{"Molecule.List":{"children":[{"Atom.Li":{"image":"http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/06072011134639_ageratum-houstonianum-blue-194172.jpg","description":"Hay que plantarla a pleno sol, aunque en climas calurosos también puede estar en semisombra. ","text":"Agerato celestino","info":"0°C"}},{"Atom.Li":{"image":"http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/TEM_002.jpg","text":"Calendaria 'Millas","description":"Planta anual. Precisa riego moderado.. Mes de floración: VI-VIII","info":"< -1°C"}},{"Atom.Li":{"text":"Cresta de gallo","image":"http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/TEM_017.jpg","description":"Planta anual. Precisa riego moderado. Mes de floración: V-IX","info":"0°C"}},{"Atom.Li":{"description":"Necesita un lugar a pleno sol y un suelo neutro, rico y húmedo, pero con buen drenaje.","image":"http://www.guiaverde.com/inc/thumb.php?filename=../files/plant/01092011133929_helianthus-annuus-abendsonne-14002115.jpg","text":"Girasol","info":"< -1°C"}}],"style":"margin-top"}},{"Molecule.Div":{"children":[{"Atom.Label":{"value":"Plantas del mes"}}]}},{"Molecule.List":{"children":[{"Atom.Li":{"text":"Aurinia saxatilis","description":"Cestillo de oro"}},{"Atom.Li":{"text":"Camellia japonica","description":"Arbusto o arbolillo de flores grandes"}}],"bind":{}}}],"id":"list","style":"active"}}],"id":"main"}
- chapter : 5
subchapter : 5.1
title : Detalles de un elemento
readme : /www/assets/documentation/html/5-1.html
yaml : >
children:
- Organism.Header:
children:
- Atom.Heading:
size: h1
value: Camellia Japonica
- Molecule.Navigation:
style: left
children:
- Atom.Button:
events:
- touch
icon: angle-left
- Organism.Section:
id: details
style: active
children:
- Atom.Figure:
style: big
url: "http://stephendanko.com/blog/wp-content/uploads/2009/04/Camellia-Covina.jpg"
- Molecule.Div:
id: extra
style: margin-all
children:
- Atom.Heading:
size: h1
value: Camellia japonica
- Atom.Label:
value: "Famila: Theaceae"
- Atom.Text:
value: "Es un arbusto floral o un árbol pequeño, nativo de Japón, Corea, China.1 En la zona central de Chile, la ciudad de Bulnes es conocida como la ciudad de las Camelias."
style: tiny margin-top margin-bottom
- Atom.Video:
src: "http://youtu.be/HqwAWG6_FI4"
controls: true
preload: true
autoplay: true
- Molecule.Navigation:
children:
- Atom.Button:
events:
- touch
text: Order
style: theme
id: main
code : >
{"id":"main","children":[{"Organism.Header":{"children":[{"Atom.Heading":{"size":"h1","value":"Camellia Japonica"}},{"Molecule.Navigation":{"style":"left","children":[{"Atom.Button":{"events":["touch"],"icon":"angle-left"}}]}}]}},{"Organism.Section":{"id":"details","style":"active","children":[{"Atom.Figure":{"style":"big","url":"http://stephendanko.com/blog/wp-content/uploads/2009/04/Camellia-Covina.jpg"}},{"Molecule.Div":{"id":"extra","style":"margin-all","children":[{"Atom.Heading":{"size":"h1","value":"Camellia japonica"}},{"Atom.Label":{"value":"Famila: Theaceae"}},{"Atom.Text":{"value":"Es un arbusto floral o un árbol pequeño, nativo de Japón, Corea, China.1 En la zona central de Chile, la ciudad de Bulnes es conocida como la ciudad de las Camelias.","style":"tiny margin-top margin-bottom"}},{"Atom.Video":{"src":"http://youtu.be/HqwAWG6_FI4","controls":true,"preload":true,"autoplay":true}}]}},{"Molecule.Navigation":{"children":[{"Atom.Button":{"events":["touch"],"text":"Order","style":"theme"}}]}}]}}]}
- chapter : 6
subchapter : 6.1
title : Pie de página
readme : /www/assets/documentation/html/6-1.html
yaml : >
children:
- Organism.Section:
id: add
style: padding
children:
- Atom.Figure:
url: "http://kidztrainer.com/server13/photos/78wQM2keLj653M~/55027_baby-kids-faces-expressions-1920x1200-wallpaper_2560x1600.jpg"
style: fluid big
- Atom.Text:
value: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
style: small
- Organism.Section:
id: like
style: padding
children:
- Atom.Figure:
url: "http://www.acatclinic.us/wp-content/uploads/2013/08/Pretty-Cat-With-Beautiful-Green-Eyes-Picture-HD-Wallpaper.jpg"
style: big
- Organism.Footer:
children:
- Molecule.Navigation:
children:
- Atom.Button:
icon: add-user
path: main/add
events:
- touch
- Atom.Button:
icon: like2
count: "14"
path: main/like
events:
- touch
- Atom.Button:
icon: refresh
events:
- touch
id: main
code : >
{"id":"main","children":[{"Organism.Section":{"id":"add","style":"padding active","children":[{"Atom.Figure":{"url":"http://kidztrainer.com/server13/photos/78wQM2keLj653M~/55027_baby-kids-faces-expressions-1920x1200-wallpaper_2560x1600.jpg","style":"fluid big"}},{"Atom.Text":{"value":"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.","style":"small"}}]}},{"Organism.Section":{"id":"like","style":"padding","children":[{"Atom.Figure":{"url":"http://www.acatclinic.us/wp-content/uploads/2013/08/Pretty-Cat-With-Beautiful-Green-Eyes-Picture-HD-Wallpaper.jpg","style":"big"}}]}},{"Organism.Footer":{"children":[{"Molecule.Navigation":{"children":[{"Atom.Button":{"icon":"add-user","path":"main/add","events":["touch"]}},{"Atom.Button":{"icon":"like2","count":"14","path":"main/like","events":["touch"]}},{"Atom.Button":{"icon":"refresh","events":["touch"]}}]}}]}}]}
- chapter : 7
subchapter : 7.1
title : Carrusel
readme : /www/assets/documentation/html/7-1.html
yaml : >
children:
- Organism.Section:
id: photos
style: active
children:
- Molecule.Carousel:
children:
- Atom.Figure:
url: "http://lorempixel.com/500/700/animals/"
- Atom.Figure:
url: "http://lorempixel.com/500/700/animals/"
- Atom.Figure:
url: "http://lorempixel.com/500/700/animals/"
style: big
id: main
code : >
{"children":[{"Organism.Section":{"id":"photos","style":"active","children":[{"Molecule.Carousel":{"children":[{"Atom.Figure":{"url":"http://lorempixel.com/500/700/animals/"}},{"Atom.Figure":{"url":"http://lorempixel.com/500/700/animals/"}},{"Atom.Figure":{"url":"http://lorempixel.com/500/700/animals/"}}],"style":"big"}}]}}],"id":"main"}
- chapter : 8
subchapter : 8.1
title : Gmap y Calendario
readme : /www/assets/documentation/html/8-1.html
yaml : >
children:
- Organism.Header:
children:
- Atom.Heading:
size: h1
value: Organiza tu viaje
- Organism.Section:
id: travel
style: active
children:
- Atom.GMap:
style: big
- Molecule.Calendar:
children: []
months:
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
days:
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
- Sun
id: main
code : >
{"children":[{"Organism.Header":{"children":[{"Atom.Heading":{"size":"h1","value":"Organiza tu viaje"}}]}},{"Organism.Section":{"style":"active","children":[{"Atom.GMap":{"style":"big"}},{"Molecule.Calendar":{"children":[],"months":["January","February","March","April","May","June","July","August","September","October","November","December"],"days":["Mon","Tue","Wed","Thu","Fri","Sat","Sun"]}}],"id":"travel"}}],"id":"main"}