zena 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1826) hide show
  1. data/History.txt +18 -0
  2. data/README.txt +133 -0
  3. data/app/controllers/application_controller.rb +3 -0
  4. data/app/controllers/comments_controller.rb +141 -0
  5. data/app/controllers/data_entries_controller.rb +81 -0
  6. data/app/controllers/discussions_controller.rb +48 -0
  7. data/app/controllers/documents_controller.rb +136 -0
  8. data/app/controllers/groups_controller.rb +99 -0
  9. data/app/controllers/iformats_controller.rb +78 -0
  10. data/app/controllers/links_controller.rb +98 -0
  11. data/app/controllers/nodes_controller.rb +497 -0
  12. data/app/controllers/preferences_controller.rb +52 -0
  13. data/app/controllers/relations_controller.rb +95 -0
  14. data/app/controllers/sessions_controller.rb +41 -0
  15. data/app/controllers/sites_controller.rb +112 -0
  16. data/app/controllers/users_controller.rb +139 -0
  17. data/app/controllers/versions_controller.rb +268 -0
  18. data/app/controllers/virtual_classes_controller.rb +95 -0
  19. data/app/helpers/application_helper.rb +4 -0
  20. data/app/helpers/documents_helper.rb +13 -0
  21. data/app/helpers/nodes_helper.rb +20 -0
  22. data/app/helpers/versions_helper.rb +18 -0
  23. data/app/models/book.rb +242 -0
  24. data/app/models/cache.rb +52 -0
  25. data/app/models/cached_page.rb +134 -0
  26. data/app/models/comment.rb +125 -0
  27. data/app/models/contact.rb +32 -0
  28. data/app/models/contact_content.rb +70 -0
  29. data/app/models/contact_version.rb +40 -0
  30. data/app/models/data_entry.rb +162 -0
  31. data/app/models/discussion.rb +65 -0
  32. data/app/models/document.rb +146 -0
  33. data/app/models/document_content.rb +186 -0
  34. data/app/models/document_version.rb +13 -0
  35. data/app/models/dyn_attribute.rb +4 -0
  36. data/app/models/group.rb +142 -0
  37. data/app/models/iformat.rb +146 -0
  38. data/app/models/image.rb +96 -0
  39. data/app/models/image_content.rb +189 -0
  40. data/app/models/image_version.rb +21 -0
  41. data/app/models/link.rb +121 -0
  42. data/app/models/node.rb +1752 -0
  43. data/app/models/note.rb +58 -0
  44. data/app/models/page.rb +53 -0
  45. data/app/models/project.rb +10 -0
  46. data/app/models/reference.rb +18 -0
  47. data/app/models/relation.rb +18 -0
  48. data/app/models/relation_proxy.rb +379 -0
  49. data/app/models/section.rb +5 -0
  50. data/app/models/site.rb +355 -0
  51. data/app/models/skin.rb +20 -0
  52. data/app/models/template.rb +134 -0
  53. data/app/models/template_content.rb +112 -0
  54. data/app/models/template_version.rb +37 -0
  55. data/app/models/text_document.rb +162 -0
  56. data/app/models/text_document_content.rb +46 -0
  57. data/app/models/text_document_version.rb +21 -0
  58. data/app/models/user.rb +412 -0
  59. data/app/models/version.rb +328 -0
  60. data/app/models/virtual_class.rb +134 -0
  61. data/app/models/zip.rb +6 -0
  62. data/app/views/comments/_add.rhtml +6 -0
  63. data/app/views/comments/_bin.rhtml +5 -0
  64. data/app/views/comments/_form.rhtml +26 -0
  65. data/app/views/comments/_li.rhtml +13 -0
  66. data/app/views/comments/_li_simple.rhtml +3 -0
  67. data/app/views/comments/_list.rhtml +13 -0
  68. data/app/views/comments/create.rjs +32 -0
  69. data/app/views/comments/edit.rjs +2 -0
  70. data/app/views/comments/empty_bin.rjs +1 -0
  71. data/app/views/comments/index.rhtml +12 -0
  72. data/app/views/comments/publish.rjs +7 -0
  73. data/app/views/comments/remove.rjs +9 -0
  74. data/app/views/comments/reply_to.rjs +2 -0
  75. data/app/views/comments/update.rjs +1 -0
  76. data/app/views/data_entries/_li.html.erb +9 -0
  77. data/app/views/data_entries/create.rjs +1 -0
  78. data/app/views/data_entries/destroy.rjs +1 -0
  79. data/app/views/data_entries/edit.rjs +1 -0
  80. data/app/views/data_entries/index.html.erb +5 -0
  81. data/app/views/data_entries/show.html.erb +5 -0
  82. data/app/views/data_entries/show.rjs +1 -0
  83. data/app/views/data_entries/update.rjs +1 -0
  84. data/app/views/discussions/_add.rhtml +6 -0
  85. data/app/views/discussions/_form.rhtml +21 -0
  86. data/app/views/discussions/_li.rhtml +9 -0
  87. data/app/views/discussions/_list.rhtml +4 -0
  88. data/app/views/discussions/create.rjs +10 -0
  89. data/app/views/discussions/remove.rjs +7 -0
  90. data/app/views/discussions/show.rjs +1 -0
  91. data/app/views/discussions/update.rjs +2 -0
  92. data/app/views/documents/_crop.rhtml +10 -0
  93. data/app/views/documents/crop_form.rjs +4 -0
  94. data/app/views/documents/new.rhtml +18 -0
  95. data/app/views/documents/show.rhtml +17 -0
  96. data/app/views/groups/_add.rhtml +6 -0
  97. data/app/views/groups/_form.rhtml +44 -0
  98. data/app/views/groups/_li.rhtml +13 -0
  99. data/app/views/groups/create.rjs +8 -0
  100. data/app/views/groups/destroy.rjs +2 -0
  101. data/app/views/groups/edit.html.erb +5 -0
  102. data/app/views/groups/index.rhtml +6 -0
  103. data/app/views/groups/show.html.erb +5 -0
  104. data/app/views/groups/show.rjs +1 -0
  105. data/app/views/iformats/_add.rhtml +6 -0
  106. data/app/views/iformats/_form.rhtml +29 -0
  107. data/app/views/iformats/_li.rhtml +15 -0
  108. data/app/views/iformats/create.rjs +8 -0
  109. data/app/views/iformats/destroy.rjs +11 -0
  110. data/app/views/iformats/edit.html.erb +5 -0
  111. data/app/views/iformats/index.rhtml +7 -0
  112. data/app/views/iformats/show.html.erb +5 -0
  113. data/app/views/iformats/show.rjs +1 -0
  114. data/app/views/iformats/update.rjs +5 -0
  115. data/app/views/image/_title.rhtml +8 -0
  116. data/app/views/links/_add.rhtml +6 -0
  117. data/app/views/links/_form.rhtml +34 -0
  118. data/app/views/links/_li.rhtml +7 -0
  119. data/app/views/links/_list.rhtml +9 -0
  120. data/app/views/links/create.rjs +5 -0
  121. data/app/views/links/destroy.rjs +11 -0
  122. data/app/views/links/show.rjs +5 -0
  123. data/app/views/nodes/404.html +15 -0
  124. data/app/views/nodes/500.html +15 -0
  125. data/app/views/nodes/_dates.rhtml +13 -0
  126. data/app/views/nodes/_edit_attribute.rhtml +32 -0
  127. data/app/views/nodes/_gallery.rhtml +16 -0
  128. data/app/views/nodes/_groups.rhtml +25 -0
  129. data/app/views/nodes/_import_results.rhtml +20 -0
  130. data/app/views/nodes/_list_nodes.rhtml +9 -0
  131. data/app/views/nodes/_parent.rhtml +15 -0
  132. data/app/views/nodes/_position.rhtml +22 -0
  133. data/app/views/nodes/_results.rhtml +29 -0
  134. data/app/views/nodes/_show_attr.rhtml +6 -0
  135. data/app/views/nodes/_table.rhtml +14 -0
  136. data/app/views/nodes/clear_order.rjs +7 -0
  137. data/app/views/nodes/create.rjs +17 -0
  138. data/app/views/nodes/drive.rjs +2 -0
  139. data/app/views/nodes/drop.rjs +1 -0
  140. data/app/views/nodes/edit.html.erb +17 -0
  141. data/app/views/nodes/edit.rjs +7 -0
  142. data/app/views/nodes/import.rhtml +10 -0
  143. data/app/views/nodes/save_text.rjs +13 -0
  144. data/app/views/nodes/search.rjs +3 -0
  145. data/app/views/nodes/show.rjs +1 -0
  146. data/app/views/nodes/table_update.rjs +8 -0
  147. data/app/views/nodes/update.rjs +29 -0
  148. data/app/views/nodes/zafu.rjs +1 -0
  149. data/app/views/relations/_add.erb +6 -0
  150. data/app/views/relations/_form.erb +43 -0
  151. data/app/views/relations/_li.erb +16 -0
  152. data/app/views/relations/create.rjs +8 -0
  153. data/app/views/relations/destroy.rjs +6 -0
  154. data/app/views/relations/edit.erb +2 -0
  155. data/app/views/relations/index.erb +6 -0
  156. data/app/views/relations/new.erb +2 -0
  157. data/app/views/relations/show.rjs +1 -0
  158. data/app/views/relations/update.rjs +5 -0
  159. data/app/views/search/_form.rhtml +13 -0
  160. data/app/views/sites/_form.erb +37 -0
  161. data/app/views/sites/_li.erb +13 -0
  162. data/app/views/sites/clear_cache.rjs +2 -0
  163. data/app/views/sites/edit.erb +2 -0
  164. data/app/views/sites/index.erb +6 -0
  165. data/app/views/sites/show.rjs +1 -0
  166. data/app/views/sites/update.rjs +5 -0
  167. data/app/views/sites/zena_up.html.erb +11 -0
  168. data/app/views/templates/defaults/+adminLayout.zafu +69 -0
  169. data/app/views/templates/defaults/+login.zafu +32 -0
  170. data/app/views/templates/document_create_tabs/_file.rhtml +13 -0
  171. data/app/views/templates/document_create_tabs/_import.rhtml +9 -0
  172. data/app/views/templates/document_create_tabs/_template.rhtml +22 -0
  173. data/app/views/templates/document_create_tabs/_text_doc.rhtml +14 -0
  174. data/app/views/templates/drive_tabs/_drive.rhtml +11 -0
  175. data/app/views/templates/drive_tabs/_help.rhtml +0 -0
  176. data/app/views/templates/drive_tabs/_links.rhtml +8 -0
  177. data/app/views/templates/edit_tabs/_contact.rhtml +8 -0
  178. data/app/views/templates/edit_tabs/_custom.rhtml +6 -0
  179. data/app/views/templates/edit_tabs/_document.rhtml +8 -0
  180. data/app/views/templates/edit_tabs/_help.rhtml +7 -0
  181. data/app/views/templates/edit_tabs/_image.rhtml +19 -0
  182. data/app/views/templates/edit_tabs/_template.rhtml +8 -0
  183. data/app/views/templates/edit_tabs/_text.rhtml +1 -0
  184. data/app/views/templates/edit_tabs/_textdocument.rhtml +16 -0
  185. data/app/views/templates/edit_tabs/_title.rhtml +27 -0
  186. data/app/views/users/_add.rhtml +6 -0
  187. data/app/views/users/_form.rhtml +49 -0
  188. data/app/views/users/_li.rhtml +18 -0
  189. data/app/views/users/change_info.rjs +7 -0
  190. data/app/views/users/change_password.rjs +7 -0
  191. data/app/views/users/create.rjs +8 -0
  192. data/app/views/users/index.rhtml +7 -0
  193. data/app/views/users/preferences.html.erb +40 -0
  194. data/app/views/users/show.rjs +1 -0
  195. data/app/views/users/update.rjs +16 -0
  196. data/app/views/versions/_li.rhtml +3 -0
  197. data/app/views/versions/_list.rhtml +5 -0
  198. data/app/views/versions/_tr.rhtml +10 -0
  199. data/app/views/versions/backup.rjs +16 -0
  200. data/app/views/versions/css_preview.rjs +2 -0
  201. data/app/views/versions/destroy.rjs +6 -0
  202. data/app/views/versions/diff.rjs +3 -0
  203. data/app/views/versions/edit.rhtml +55 -0
  204. data/app/views/versions/preview.rjs +9 -0
  205. data/app/views/versions/show.rjs +5 -0
  206. data/app/views/versions/update.rjs +9 -0
  207. data/app/views/virtual_classes/_add.erb +6 -0
  208. data/app/views/virtual_classes/_form.erb +30 -0
  209. data/app/views/virtual_classes/_li.erb +12 -0
  210. data/app/views/virtual_classes/create.rjs +8 -0
  211. data/app/views/virtual_classes/destroy.rjs +6 -0
  212. data/app/views/virtual_classes/index.erb +7 -0
  213. data/app/views/virtual_classes/new.erb +2 -0
  214. data/app/views/virtual_classes/show.rjs +1 -0
  215. data/app/views/virtual_classes/update.rjs +5 -0
  216. data/bin/zena +5 -0
  217. data/bricks/captcha/MIT-LICENSE +19 -0
  218. data/bricks/captcha/README +11 -0
  219. data/bricks/captcha/patch/application_controller.rb +10 -0
  220. data/bricks/captcha/patch/application_helper.rb +32 -0
  221. data/bricks/captcha/patch/site.rb +2 -0
  222. data/bricks/captcha/zafu/captcha.rb +29 -0
  223. data/bricks/math/patch/application_helper.rb +95 -0
  224. data/bricks/tags/README +31 -0
  225. data/bricks/tags/lib/has_tags.rb +164 -0
  226. data/bricks/tags/patch/node.rb +15 -0
  227. data/bricks/tags/test/sites/zena/links.yml +11 -0
  228. data/bricks/tags/test/unit/tags_test.rb +103 -0
  229. data/bricks/tags/test/zafu/tags.yml +28 -0
  230. data/bricks/toto.zip +0 -0
  231. data/config/awstats.conf.rhtml +1497 -0
  232. data/config/boot.rb +109 -0
  233. data/config/database.rhtml +25 -0
  234. data/config/database.yml +40 -0
  235. data/config/database_example.yml +27 -0
  236. data/config/deploy.rb +382 -0
  237. data/config/deploy_config_example.rb +7 -0
  238. data/config/environment.rb +13 -0
  239. data/config/environments/development.rb +21 -0
  240. data/config/environments/production.rb +27 -0
  241. data/config/environments/test.rb +22 -0
  242. data/config/gems.yml +46 -0
  243. data/config/httpd.rhtml +18 -0
  244. data/config/initializers/mime_types.rb +10 -0
  245. data/config/initializers/zena.rb +1 -0
  246. data/config/locales/de.yml +120 -0
  247. data/config/locales/fr-CH.yml +123 -0
  248. data/config/locales/fr.yml +123 -0
  249. data/config/mongrel_upload_progress.conf +7 -0
  250. data/config/routes.rb +3 -0
  251. data/config/start.html +44 -0
  252. data/config/stats.vhost.rhtml +40 -0
  253. data/config/vhost.rhtml +84 -0
  254. data/config/vhost_www.rhtml +10 -0
  255. data/config/zena.rb +39 -0
  256. data/db/init/base/help.en.zml +94 -0
  257. data/db/init/base/help.fr.zml +88 -0
  258. data/db/init/base/skins.zml +3 -0
  259. data/db/init/base/skins/default.zml +10 -0
  260. data/db/init/base/skins/default/Node-+adminLayout.zafu +45 -0
  261. data/db/init/base/skins/default/Node-+index.zafu +1 -0
  262. data/db/init/base/skins/default/Node-+login.zafu +25 -0
  263. data/db/init/base/skins/default/Node-+notFound.zafu +14 -0
  264. data/db/init/base/skins/default/Node-+popupLayout.zafu +39 -0
  265. data/db/init/base/skins/default/Node-+search.zafu +20 -0
  266. data/db/init/base/skins/default/Node-tree.zafu +19 -0
  267. data/db/init/base/skins/default/Node.zafu +95 -0
  268. data/db/init/base/skins/default/Project.zafu +8 -0
  269. data/db/init/base/skins/default/favicon.png +0 -0
  270. data/db/init/base/skins/default/notes.zafu +22 -0
  271. data/db/init/base/skins/default/style.css +80 -0
  272. data/db/migrate/001_create_base.rb +156 -0
  273. data/db/migrate/002_add_time_zone_to_users.rb +9 -0
  274. data/db/migrate/003_add_custom_base_flag.rb +11 -0
  275. data/db/migrate/004_rename_template_skin.rb +9 -0
  276. data/db/migrate/005_create_cached_pages.rb +20 -0
  277. data/db/migrate/006_create_sites.rb +60 -0
  278. data/db/migrate/007_replace_id_by_zip.rb +17 -0
  279. data/db/migrate/008_user_status.rb +10 -0
  280. data/db/migrate/009_fulltext.rb +13 -0
  281. data/db/migrate/010_create_template_content.rb +17 -0
  282. data/db/migrate/011_project_to_section.rb +9 -0
  283. data/db/migrate/012_add_project_id.rb +12 -0
  284. data/db/migrate/013_remove_defaults.rb +29 -0
  285. data/db/migrate/014_add_sort_field.rb +10 -0
  286. data/db/migrate/015_add_dyn_attributes.rb +18 -0
  287. data/db/migrate/016_remove_translations.rb +20 -0
  288. data/db/migrate/017_rename_authorize.rb +9 -0
  289. data/db/migrate/018_add_auth_option.rb +9 -0
  290. data/db/migrate/019_remove_user_status.rb +25 -0
  291. data/db/migrate/020_create_participation.rb +30 -0
  292. data/db/migrate/021_create_relations.rb +23 -0
  293. data/db/migrate/022_create_virtual_classes.rb +20 -0
  294. data/db/migrate/023_ip_on_anonymous_comment.rb +9 -0
  295. data/db/migrate/024_correct_vclass_kpath.rb +11 -0
  296. data/db/migrate/025_move_tag_into_vclass.rb +13 -0
  297. data/db/migrate/026_rename_templates.rb +47 -0
  298. data/db/migrate/027_add_country_to_contacts.rb +9 -0
  299. data/db/migrate/028_change_size_of_conten_type_field.rb +9 -0
  300. data/db/migrate/029_create_data_entries.rb +21 -0
  301. data/db/migrate/030_redit_auto_publish_site_settings.rb +13 -0
  302. data/db/migrate/031_create_iformats.rb +21 -0
  303. data/db/migrate/032_caches_context_as_hash.rb +10 -0
  304. data/db/migrate/033_documents_kpath_change.rb +17 -0
  305. data/db/migrate/034_change_file_storage.rb +38 -0
  306. data/db/migrate/035_add_status_to_link.rb +13 -0
  307. data/db/migrate/036_add_flag_fields_on_nodes.rb +11 -0
  308. data/db/migrate/037_add_auto_create_discussion_to_v_class.rb +11 -0
  309. data/db/migrate/038_create_site_attributes.rb +15 -0
  310. data/db/migrate/039_default_position.rb +10 -0
  311. data/db/migrate/040_second_value_for_data_entry.rb +11 -0
  312. data/db/migrate/041_add_attributes_to_v_class.rb +9 -0
  313. data/db/migrate/042_fix_position_should_be_float.rb +8 -0
  314. data/db/migrate/043_move_user_lang_into_participation.rb +15 -0
  315. data/db/migrate/044_remove_monolingual_site_option.rb +9 -0
  316. data/db/migrate/045_avoid_star_in_templates.rb +13 -0
  317. data/db/migrate/046_fix_zazen_image_tag.rb +47 -0
  318. data/db/migrate/047_change_default_link_id_to_zero.rb +12 -0
  319. data/db/migrate/048_link_source_target_can_be_null.rb +11 -0
  320. data/db/migrate/049_fix_publish_from_is_null.rb +9 -0
  321. data/db/migrate/050_date_in_links.rb +9 -0
  322. data/db/migrate/051_add_exif_tags_to_images.rb +9 -0
  323. data/db/migrate/20090825201159_insert_zero_link.rb +8 -0
  324. data/db/migrate/20090825201200_merge_bricks_migrations_with_std_migrations.rb +19 -0
  325. data/db/migrate/20090924141459_zafu_fix_sept09.rb +19 -0
  326. data/db/migrate/20090927125912_allow_null_in_text_fields.rb +17 -0
  327. data/db/migrate/20090928133440_no_more_private_nodes.rb +25 -0
  328. data/db/migrate/20090928143754_version_status_change.rb +24 -0
  329. data/db/migrate/20091001084025_change_status_values_for_comments.rb +22 -0
  330. data/db/migrate/20091009084057_add_vhash_in_node.rb +13 -0
  331. data/db/migrate/20091013100351_rename_publish_group_to_drive_group.rb +12 -0
  332. data/db/migrate/20091014130833_fix_template_title.rb +16 -0
  333. data/db/migrate/20091014183726_merge_participation_into_users.rb +21 -0
  334. data/db/production.sqlite3 +0 -0
  335. data/db/schema.rb +281 -0
  336. data/lib/base_additions.rb +7 -0
  337. data/lib/bricks/patcher.rb +68 -0
  338. data/lib/comment_query.rb +92 -0
  339. data/lib/core_ext/date_time.rb +5 -0
  340. data/lib/core_ext/dir.rb +12 -0
  341. data/lib/core_ext/fixnum.rb +20 -0
  342. data/lib/core_ext/string.rb +74 -0
  343. data/lib/exif_data.rb +54 -0
  344. data/lib/fix_rails_layouts.rb +9 -0
  345. data/lib/gettext_strings.rb +160 -0
  346. data/lib/image_builder.rb +325 -0
  347. data/lib/log_recorder/lib/log_recorder.rb +138 -0
  348. data/lib/log_recorder/test/log_recorder_test.rb +0 -0
  349. data/lib/parser.rb +1 -0
  350. data/lib/tasks/capistrano.rake +99 -0
  351. data/lib/tasks/zena.rake +358 -0
  352. data/lib/tasks/zena.rb +2 -0
  353. data/lib/upload_progress_server.rb +24 -0
  354. data/lib/webdav_adapter.rb +172 -0
  355. data/lib/zafu_parser.rb +3 -0
  356. data/lib/zazen_parser.rb +1 -0
  357. data/lib/zena.rb +398 -0
  358. data/lib/zena/acts/multiversion.rb +755 -0
  359. data/lib/zena/acts/secure.rb +774 -0
  360. data/lib/zena/app.rb +39 -0
  361. data/lib/zena/code_syntax.rb +275 -0
  362. data/lib/zena/controller/test_case.rb +32 -0
  363. data/lib/zena/db.rb +252 -0
  364. data/lib/zena/fix/mysql_connection.rb +17 -0
  365. data/lib/zena/foxy_parser.rb +845 -0
  366. data/lib/zena/migrator.rb +109 -0
  367. data/lib/zena/parser.rb +601 -0
  368. data/lib/zena/parser/zafu_rules.rb +232 -0
  369. data/lib/zena/parser/zafu_tags.rb +197 -0
  370. data/lib/zena/parser/zazen_rules.rb +427 -0
  371. data/lib/zena/parser/zazen_tags.rb +44 -0
  372. data/lib/zena/parser/zena_rules.rb +29 -0
  373. data/lib/zena/parser/zena_tags.rb +3559 -0
  374. data/lib/zena/root.rb +3 -0
  375. data/lib/zena/routes.rb +73 -0
  376. data/lib/zena/test_controller.rb +74 -0
  377. data/lib/zena/unit/test_case.rb +24 -0
  378. data/lib/zena/use/ajax.rb +119 -0
  379. data/lib/zena/use/authentification.rb +120 -0
  380. data/lib/zena/use/calendar.rb +130 -0
  381. data/lib/zena/use/custom_queries/complex.host.yml +173 -0
  382. data/lib/zena/use/dates.rb +230 -0
  383. data/lib/zena/use/dyn_attributes.rb +256 -0
  384. data/lib/zena/use/error_rendering.rb +52 -0
  385. data/lib/zena/use/fixtures.rb +133 -0
  386. data/lib/zena/use/grid.rb +148 -0
  387. data/lib/zena/use/html_tags.rb +603 -0
  388. data/lib/zena/use/i18n.rb +247 -0
  389. data/lib/zena/use/nested_attributes_alias.rb +201 -0
  390. data/lib/zena/use/node_query_finders.rb +491 -0
  391. data/lib/zena/use/refactor.rb +231 -0
  392. data/lib/zena/use/relations.rb +360 -0
  393. data/lib/zena/use/rendering.rb +248 -0
  394. data/lib/zena/use/test_helper.rb +151 -0
  395. data/lib/zena/use/urls.rb +180 -0
  396. data/lib/zena/use/zafu.rb +549 -0
  397. data/lib/zena/use/zazen.rb +230 -0
  398. data/lib/zena/view/test_case.rb +23 -0
  399. data/locale/en/LC_MESSAGES/zena.mo +0 -0
  400. data/locale/en/zena.po +2116 -0
  401. data/locale/fr/LC_MESSAGES/zena.mo +0 -0
  402. data/locale/fr/zena.po +2172 -0
  403. data/locale/zena.pot +1915 -0
  404. data/public/calendar/calendar-brown.css +225 -0
  405. data/public/calendar/calendar-setup.js +153 -0
  406. data/public/calendar/calendar.js +1817 -0
  407. data/public/calendar/iconCalendar.gif +0 -0
  408. data/public/calendar/lang/calendar-en-utf8.js +128 -0
  409. data/public/calendar/lang/calendar-fr-utf8.js +120 -0
  410. data/public/calendar/lang/lang.zip +0 -0
  411. data/public/dispatch.cgi +10 -0
  412. data/public/dispatch.fcgi +24 -0
  413. data/public/dispatch.rb +10 -0
  414. data/public/favicon.ico +0 -0
  415. data/public/images/accept.png +0 -0
  416. data/public/images/action.png +0 -0
  417. data/public/images/add.png +0 -0
  418. data/public/images/ajax-loader.gif +0 -0
  419. data/public/images/anchor.png +0 -0
  420. data/public/images/application.png +0 -0
  421. data/public/images/application_add.png +0 -0
  422. data/public/images/application_cascade.png +0 -0
  423. data/public/images/application_delete.png +0 -0
  424. data/public/images/application_double.png +0 -0
  425. data/public/images/application_edit.png +0 -0
  426. data/public/images/application_error.png +0 -0
  427. data/public/images/application_form.png +0 -0
  428. data/public/images/application_form_add.png +0 -0
  429. data/public/images/application_form_delete.png +0 -0
  430. data/public/images/application_form_edit.png +0 -0
  431. data/public/images/application_form_magnify.png +0 -0
  432. data/public/images/application_get.png +0 -0
  433. data/public/images/application_go.png +0 -0
  434. data/public/images/application_home.png +0 -0
  435. data/public/images/application_key.png +0 -0
  436. data/public/images/application_lightning.png +0 -0
  437. data/public/images/application_link.png +0 -0
  438. data/public/images/application_osx.png +0 -0
  439. data/public/images/application_osx_terminal.png +0 -0
  440. data/public/images/application_put.png +0 -0
  441. data/public/images/application_side_boxes.png +0 -0
  442. data/public/images/application_side_contract.png +0 -0
  443. data/public/images/application_side_expand.png +0 -0
  444. data/public/images/application_side_list.png +0 -0
  445. data/public/images/application_side_tree.png +0 -0
  446. data/public/images/application_split.png +0 -0
  447. data/public/images/application_tile_horizontal.png +0 -0
  448. data/public/images/application_tile_vertical.png +0 -0
  449. data/public/images/application_view_columns.png +0 -0
  450. data/public/images/application_view_detail.png +0 -0
  451. data/public/images/application_view_gallery.png +0 -0
  452. data/public/images/application_view_icons.png +0 -0
  453. data/public/images/application_view_list.png +0 -0
  454. data/public/images/application_view_tile.png +0 -0
  455. data/public/images/application_xp.png +0 -0
  456. data/public/images/application_xp_terminal.png +0 -0
  457. data/public/images/arrow_branch.png +0 -0
  458. data/public/images/arrow_divide.png +0 -0
  459. data/public/images/arrow_down.png +0 -0
  460. data/public/images/arrow_in.png +0 -0
  461. data/public/images/arrow_inout.png +0 -0
  462. data/public/images/arrow_join.png +0 -0
  463. data/public/images/arrow_left.png +0 -0
  464. data/public/images/arrow_merge.png +0 -0
  465. data/public/images/arrow_out.png +0 -0
  466. data/public/images/arrow_redo.png +0 -0
  467. data/public/images/arrow_refresh.png +0 -0
  468. data/public/images/arrow_refresh_small.png +0 -0
  469. data/public/images/arrow_right.png +0 -0
  470. data/public/images/arrow_rotate_anticlockwise.png +0 -0
  471. data/public/images/arrow_rotate_clockwise.png +0 -0
  472. data/public/images/arrow_switch.png +0 -0
  473. data/public/images/arrow_turn_left.png +0 -0
  474. data/public/images/arrow_turn_right.png +0 -0
  475. data/public/images/arrow_undo.png +0 -0
  476. data/public/images/arrow_up.png +0 -0
  477. data/public/images/asterisk_orange.png +0 -0
  478. data/public/images/asterisk_yellow.png +0 -0
  479. data/public/images/attach.png +0 -0
  480. data/public/images/award_star_add.png +0 -0
  481. data/public/images/award_star_bronze_1.png +0 -0
  482. data/public/images/award_star_bronze_2.png +0 -0
  483. data/public/images/award_star_bronze_3.png +0 -0
  484. data/public/images/award_star_delete.png +0 -0
  485. data/public/images/award_star_gold_1.png +0 -0
  486. data/public/images/award_star_gold_2.png +0 -0
  487. data/public/images/award_star_gold_3.png +0 -0
  488. data/public/images/award_star_silver_1.png +0 -0
  489. data/public/images/award_star_silver_2.png +0 -0
  490. data/public/images/award_star_silver_3.png +0 -0
  491. data/public/images/basket.png +0 -0
  492. data/public/images/basket_add.png +0 -0
  493. data/public/images/basket_delete.png +0 -0
  494. data/public/images/basket_edit.png +0 -0
  495. data/public/images/basket_error.png +0 -0
  496. data/public/images/basket_go.png +0 -0
  497. data/public/images/basket_put.png +0 -0
  498. data/public/images/basket_remove.png +0 -0
  499. data/public/images/bell.png +0 -0
  500. data/public/images/bell_add.png +0 -0
  501. data/public/images/bell_delete.png +0 -0
  502. data/public/images/bell_error.png +0 -0
  503. data/public/images/bell_go.png +0 -0
  504. data/public/images/bell_link.png +0 -0
  505. data/public/images/bin.png +0 -0
  506. data/public/images/bin_closed.png +0 -0
  507. data/public/images/bin_empty.gif +0 -0
  508. data/public/images/bin_empty.png +0 -0
  509. data/public/images/bin_full.gif +0 -0
  510. data/public/images/bomb.png +0 -0
  511. data/public/images/book.png +0 -0
  512. data/public/images/book_add.png +0 -0
  513. data/public/images/book_addresses.png +0 -0
  514. data/public/images/book_delete.png +0 -0
  515. data/public/images/book_edit.png +0 -0
  516. data/public/images/book_error.png +0 -0
  517. data/public/images/book_go.png +0 -0
  518. data/public/images/book_key.png +0 -0
  519. data/public/images/book_link.png +0 -0
  520. data/public/images/book_next.png +0 -0
  521. data/public/images/book_open.png +0 -0
  522. data/public/images/book_previous.png +0 -0
  523. data/public/images/box.png +0 -0
  524. data/public/images/brick.png +0 -0
  525. data/public/images/brick_add.png +0 -0
  526. data/public/images/brick_delete.png +0 -0
  527. data/public/images/brick_edit.png +0 -0
  528. data/public/images/brick_error.png +0 -0
  529. data/public/images/brick_go.png +0 -0
  530. data/public/images/brick_link.png +0 -0
  531. data/public/images/bricks.png +0 -0
  532. data/public/images/briefcase.png +0 -0
  533. data/public/images/bug.png +0 -0
  534. data/public/images/bug_add.png +0 -0
  535. data/public/images/bug_delete.png +0 -0
  536. data/public/images/bug_edit.png +0 -0
  537. data/public/images/bug_error.png +0 -0
  538. data/public/images/bug_go.png +0 -0
  539. data/public/images/bug_link.png +0 -0
  540. data/public/images/building.png +0 -0
  541. data/public/images/building_add.png +0 -0
  542. data/public/images/building_delete.png +0 -0
  543. data/public/images/building_edit.png +0 -0
  544. data/public/images/building_error.png +0 -0
  545. data/public/images/building_go.png +0 -0
  546. data/public/images/building_key.png +0 -0
  547. data/public/images/building_link.png +0 -0
  548. data/public/images/bullet_add.png +0 -0
  549. data/public/images/bullet_arrow_bottom.png +0 -0
  550. data/public/images/bullet_arrow_down.png +0 -0
  551. data/public/images/bullet_arrow_top.png +0 -0
  552. data/public/images/bullet_arrow_up.png +0 -0
  553. data/public/images/bullet_black.png +0 -0
  554. data/public/images/bullet_blue.png +0 -0
  555. data/public/images/bullet_delete.png +0 -0
  556. data/public/images/bullet_disk.png +0 -0
  557. data/public/images/bullet_error.png +0 -0
  558. data/public/images/bullet_feed.png +0 -0
  559. data/public/images/bullet_go.png +0 -0
  560. data/public/images/bullet_green.png +0 -0
  561. data/public/images/bullet_key.png +0 -0
  562. data/public/images/bullet_orange.png +0 -0
  563. data/public/images/bullet_picture.png +0 -0
  564. data/public/images/bullet_pink.png +0 -0
  565. data/public/images/bullet_purple.png +0 -0
  566. data/public/images/bullet_red.png +0 -0
  567. data/public/images/bullet_star.png +0 -0
  568. data/public/images/bullet_toggle_minus.png +0 -0
  569. data/public/images/bullet_toggle_plus.png +0 -0
  570. data/public/images/bullet_white.png +0 -0
  571. data/public/images/bullet_wrench.png +0 -0
  572. data/public/images/bullet_yellow.png +0 -0
  573. data/public/images/cake.png +0 -0
  574. data/public/images/calculator.png +0 -0
  575. data/public/images/calculator_add.png +0 -0
  576. data/public/images/calculator_delete.png +0 -0
  577. data/public/images/calculator_edit.png +0 -0
  578. data/public/images/calculator_error.png +0 -0
  579. data/public/images/calculator_link.png +0 -0
  580. data/public/images/calendar.png +0 -0
  581. data/public/images/calendar_add.png +0 -0
  582. data/public/images/calendar_delete.png +0 -0
  583. data/public/images/calendar_edit.png +0 -0
  584. data/public/images/calendar_link.png +0 -0
  585. data/public/images/calendar_view_day.png +0 -0
  586. data/public/images/calendar_view_month.png +0 -0
  587. data/public/images/calendar_view_week.png +0 -0
  588. data/public/images/camera.png +0 -0
  589. data/public/images/camera_add.png +0 -0
  590. data/public/images/camera_delete.png +0 -0
  591. data/public/images/camera_edit.png +0 -0
  592. data/public/images/camera_error.png +0 -0
  593. data/public/images/camera_go.png +0 -0
  594. data/public/images/camera_link.png +0 -0
  595. data/public/images/camera_small.png +0 -0
  596. data/public/images/cancel.png +0 -0
  597. data/public/images/car.png +0 -0
  598. data/public/images/car_add.png +0 -0
  599. data/public/images/car_delete.png +0 -0
  600. data/public/images/cart.png +0 -0
  601. data/public/images/cart_add.png +0 -0
  602. data/public/images/cart_delete.png +0 -0
  603. data/public/images/cart_edit.png +0 -0
  604. data/public/images/cart_error.png +0 -0
  605. data/public/images/cart_go.png +0 -0
  606. data/public/images/cart_put.png +0 -0
  607. data/public/images/cart_remove.png +0 -0
  608. data/public/images/cd.png +0 -0
  609. data/public/images/cd_add.png +0 -0
  610. data/public/images/cd_burn.png +0 -0
  611. data/public/images/cd_delete.png +0 -0
  612. data/public/images/cd_edit.png +0 -0
  613. data/public/images/cd_eject.png +0 -0
  614. data/public/images/cd_go.png +0 -0
  615. data/public/images/chart_bar.png +0 -0
  616. data/public/images/chart_bar_add.png +0 -0
  617. data/public/images/chart_bar_delete.png +0 -0
  618. data/public/images/chart_bar_edit.png +0 -0
  619. data/public/images/chart_bar_error.png +0 -0
  620. data/public/images/chart_bar_link.png +0 -0
  621. data/public/images/chart_curve.png +0 -0
  622. data/public/images/chart_curve_add.png +0 -0
  623. data/public/images/chart_curve_delete.png +0 -0
  624. data/public/images/chart_curve_edit.png +0 -0
  625. data/public/images/chart_curve_error.png +0 -0
  626. data/public/images/chart_curve_go.png +0 -0
  627. data/public/images/chart_curve_link.png +0 -0
  628. data/public/images/chart_line.png +0 -0
  629. data/public/images/chart_line_add.png +0 -0
  630. data/public/images/chart_line_delete.png +0 -0
  631. data/public/images/chart_line_edit.png +0 -0
  632. data/public/images/chart_line_error.png +0 -0
  633. data/public/images/chart_line_link.png +0 -0
  634. data/public/images/chart_organisation.png +0 -0
  635. data/public/images/chart_organisation_add.png +0 -0
  636. data/public/images/chart_organisation_delete.png +0 -0
  637. data/public/images/chart_pie.png +0 -0
  638. data/public/images/chart_pie_add.png +0 -0
  639. data/public/images/chart_pie_delete.png +0 -0
  640. data/public/images/chart_pie_edit.png +0 -0
  641. data/public/images/chart_pie_error.png +0 -0
  642. data/public/images/chart_pie_link.png +0 -0
  643. data/public/images/clock.png +0 -0
  644. data/public/images/clock_add.png +0 -0
  645. data/public/images/clock_delete.png +0 -0
  646. data/public/images/clock_edit.png +0 -0
  647. data/public/images/clock_error.png +0 -0
  648. data/public/images/clock_go.png +0 -0
  649. data/public/images/clock_link.png +0 -0
  650. data/public/images/clock_pause.png +0 -0
  651. data/public/images/clock_play.png +0 -0
  652. data/public/images/clock_red.png +0 -0
  653. data/public/images/clock_stop.png +0 -0
  654. data/public/images/cog.png +0 -0
  655. data/public/images/cog_add.png +0 -0
  656. data/public/images/cog_delete.png +0 -0
  657. data/public/images/cog_edit.png +0 -0
  658. data/public/images/cog_error.png +0 -0
  659. data/public/images/cog_go.png +0 -0
  660. data/public/images/coins.png +0 -0
  661. data/public/images/coins_add.png +0 -0
  662. data/public/images/coins_delete.png +0 -0
  663. data/public/images/collection.png +0 -0
  664. data/public/images/color_swatch.png +0 -0
  665. data/public/images/color_wheel.png +0 -0
  666. data/public/images/column_add.png +0 -0
  667. data/public/images/column_delete.png +0 -0
  668. data/public/images/comment.png +0 -0
  669. data/public/images/comment_add.png +0 -0
  670. data/public/images/comment_delete.png +0 -0
  671. data/public/images/comment_edit.png +0 -0
  672. data/public/images/comments.png +0 -0
  673. data/public/images/comments_add.png +0 -0
  674. data/public/images/comments_delete.png +0 -0
  675. data/public/images/comments_red.png +0 -0
  676. data/public/images/compress.png +0 -0
  677. data/public/images/computer.png +0 -0
  678. data/public/images/computer_add.png +0 -0
  679. data/public/images/computer_delete.png +0 -0
  680. data/public/images/computer_edit.png +0 -0
  681. data/public/images/computer_error.png +0 -0
  682. data/public/images/computer_go.png +0 -0
  683. data/public/images/computer_key.png +0 -0
  684. data/public/images/computer_link.png +0 -0
  685. data/public/images/connect.png +0 -0
  686. data/public/images/contrast.png +0 -0
  687. data/public/images/contrast_decrease.png +0 -0
  688. data/public/images/contrast_high.png +0 -0
  689. data/public/images/contrast_increase.png +0 -0
  690. data/public/images/contrast_low.png +0 -0
  691. data/public/images/control_eject.png +0 -0
  692. data/public/images/control_eject_blue.png +0 -0
  693. data/public/images/control_end.png +0 -0
  694. data/public/images/control_end_blue.png +0 -0
  695. data/public/images/control_equalizer.png +0 -0
  696. data/public/images/control_equalizer_blue.png +0 -0
  697. data/public/images/control_fastforward.png +0 -0
  698. data/public/images/control_fastforward_blue.png +0 -0
  699. data/public/images/control_pause.png +0 -0
  700. data/public/images/control_pause_blue.png +0 -0
  701. data/public/images/control_play.png +0 -0
  702. data/public/images/control_play_blue.png +0 -0
  703. data/public/images/control_repeat.png +0 -0
  704. data/public/images/control_repeat_blue.png +0 -0
  705. data/public/images/control_rewind.png +0 -0
  706. data/public/images/control_rewind_blue.png +0 -0
  707. data/public/images/control_start.png +0 -0
  708. data/public/images/control_start_blue.png +0 -0
  709. data/public/images/control_stop.png +0 -0
  710. data/public/images/control_stop_blue.png +0 -0
  711. data/public/images/controller.png +0 -0
  712. data/public/images/controller_add.png +0 -0
  713. data/public/images/controller_delete.png +0 -0
  714. data/public/images/controller_error.png +0 -0
  715. data/public/images/creditcards.png +0 -0
  716. data/public/images/cross.png +0 -0
  717. data/public/images/css.png +0 -0
  718. data/public/images/css_add.png +0 -0
  719. data/public/images/css_delete.png +0 -0
  720. data/public/images/css_go.png +0 -0
  721. data/public/images/css_valid.png +0 -0
  722. data/public/images/cup.png +0 -0
  723. data/public/images/cup_add.png +0 -0
  724. data/public/images/cup_delete.png +0 -0
  725. data/public/images/cup_edit.png +0 -0
  726. data/public/images/cup_error.png +0 -0
  727. data/public/images/cup_go.png +0 -0
  728. data/public/images/cup_key.png +0 -0
  729. data/public/images/cup_link.png +0 -0
  730. data/public/images/cursor.png +0 -0
  731. data/public/images/cut.png +0 -0
  732. data/public/images/cut_red.png +0 -0
  733. data/public/images/database.png +0 -0
  734. data/public/images/database_add.png +0 -0
  735. data/public/images/database_connect.png +0 -0
  736. data/public/images/database_delete.png +0 -0
  737. data/public/images/database_edit.png +0 -0
  738. data/public/images/database_error.png +0 -0
  739. data/public/images/database_gear.png +0 -0
  740. data/public/images/database_go.png +0 -0
  741. data/public/images/database_key.png +0 -0
  742. data/public/images/database_lightning.png +0 -0
  743. data/public/images/database_link.png +0 -0
  744. data/public/images/database_refresh.png +0 -0
  745. data/public/images/database_save.png +0 -0
  746. data/public/images/database_table.png +0 -0
  747. data/public/images/date.png +0 -0
  748. data/public/images/date_add.png +0 -0
  749. data/public/images/date_delete.png +0 -0
  750. data/public/images/date_edit.png +0 -0
  751. data/public/images/date_error.png +0 -0
  752. data/public/images/date_go.png +0 -0
  753. data/public/images/date_link.png +0 -0
  754. data/public/images/date_magnify.png +0 -0
  755. data/public/images/date_next.png +0 -0
  756. data/public/images/date_previous.png +0 -0
  757. data/public/images/delete.png +0 -0
  758. data/public/images/disconnect.png +0 -0
  759. data/public/images/disk.png +0 -0
  760. data/public/images/disk_multiple.png +0 -0
  761. data/public/images/door.png +0 -0
  762. data/public/images/door_in.png +0 -0
  763. data/public/images/door_open.png +0 -0
  764. data/public/images/door_out.png +0 -0
  765. data/public/images/drink.png +0 -0
  766. data/public/images/drink_empty.png +0 -0
  767. data/public/images/drive.png +0 -0
  768. data/public/images/drive_add.png +0 -0
  769. data/public/images/drive_burn.png +0 -0
  770. data/public/images/drive_cd.png +0 -0
  771. data/public/images/drive_cd_empty.png +0 -0
  772. data/public/images/drive_delete.png +0 -0
  773. data/public/images/drive_disk.png +0 -0
  774. data/public/images/drive_edit.png +0 -0
  775. data/public/images/drive_error.png +0 -0
  776. data/public/images/drive_go.png +0 -0
  777. data/public/images/drive_key.png +0 -0
  778. data/public/images/drive_link.png +0 -0
  779. data/public/images/drive_magnify.png +0 -0
  780. data/public/images/drive_network.png +0 -0
  781. data/public/images/drive_rename.png +0 -0
  782. data/public/images/drive_user.png +0 -0
  783. data/public/images/drive_web.png +0 -0
  784. data/public/images/dvd.png +0 -0
  785. data/public/images/dvd_add.png +0 -0
  786. data/public/images/dvd_delete.png +0 -0
  787. data/public/images/dvd_edit.png +0 -0
  788. data/public/images/dvd_error.png +0 -0
  789. data/public/images/dvd_go.png +0 -0
  790. data/public/images/dvd_key.png +0 -0
  791. data/public/images/dvd_link.png +0 -0
  792. data/public/images/email.png +0 -0
  793. data/public/images/email_add.png +0 -0
  794. data/public/images/email_attach.png +0 -0
  795. data/public/images/email_delete.png +0 -0
  796. data/public/images/email_edit.png +0 -0
  797. data/public/images/email_error.png +0 -0
  798. data/public/images/email_go.png +0 -0
  799. data/public/images/email_link.png +0 -0
  800. data/public/images/email_open.png +0 -0
  801. data/public/images/email_open_image.png +0 -0
  802. data/public/images/emoticon_evilgrin.png +0 -0
  803. data/public/images/emoticon_grin.png +0 -0
  804. data/public/images/emoticon_happy.png +0 -0
  805. data/public/images/emoticon_smile.png +0 -0
  806. data/public/images/emoticon_surprised.png +0 -0
  807. data/public/images/emoticon_tongue.png +0 -0
  808. data/public/images/emoticon_unhappy.png +0 -0
  809. data/public/images/emoticon_waii.png +0 -0
  810. data/public/images/emoticon_wink.png +0 -0
  811. data/public/images/error.png +0 -0
  812. data/public/images/error_add.png +0 -0
  813. data/public/images/error_delete.png +0 -0
  814. data/public/images/error_go.png +0 -0
  815. data/public/images/exclamation.png +0 -0
  816. data/public/images/ext/contact.png +0 -0
  817. data/public/images/ext/contact_pv.png +0 -0
  818. data/public/images/ext/doc.png +0 -0
  819. data/public/images/ext/doc_tiny.png +0 -0
  820. data/public/images/ext/jpg.png +0 -0
  821. data/public/images/ext/jpg_tiny.png +0 -0
  822. data/public/images/ext/other.png +0 -0
  823. data/public/images/ext/other_pv.png +0 -0
  824. data/public/images/ext/other_tiny.png +0 -0
  825. data/public/images/ext/page.png +0 -0
  826. data/public/images/ext/page_pv.png +0 -0
  827. data/public/images/ext/page_tiny.png +0 -0
  828. data/public/images/ext/pdf.png +0 -0
  829. data/public/images/ext/pdf_pv.png +0 -0
  830. data/public/images/ext/pdf_tiny.png +0 -0
  831. data/public/images/ext/png.png +0 -0
  832. data/public/images/ext/png_tiny.png +0 -0
  833. data/public/images/ext/post.png +0 -0
  834. data/public/images/ext/post_pv.png +0 -0
  835. data/public/images/ext/post_tiny.png +0 -0
  836. data/public/images/ext/project.png +0 -0
  837. data/public/images/ext/project_pv.png +0 -0
  838. data/public/images/ext/project_tiny.png +0 -0
  839. data/public/images/ext/rtf.png +0 -0
  840. data/public/images/ext/rtf_tiny.png +0 -0
  841. data/public/images/ext/tag.png +0 -0
  842. data/public/images/ext/tag_pv.png +0 -0
  843. data/public/images/ext/xls.png +0 -0
  844. data/public/images/ext/xls_tiny.png +0 -0
  845. data/public/images/ext/zip.png +0 -0
  846. data/public/images/ext/zip_pv.png +0 -0
  847. data/public/images/ext/zip_tiny.png +0 -0
  848. data/public/images/eye.png +0 -0
  849. data/public/images/feed.png +0 -0
  850. data/public/images/feed_add.png +0 -0
  851. data/public/images/feed_delete.png +0 -0
  852. data/public/images/feed_disk.png +0 -0
  853. data/public/images/feed_edit.png +0 -0
  854. data/public/images/feed_error.png +0 -0
  855. data/public/images/feed_go.png +0 -0
  856. data/public/images/feed_key.png +0 -0
  857. data/public/images/feed_link.png +0 -0
  858. data/public/images/feed_magnify.png +0 -0
  859. data/public/images/female.png +0 -0
  860. data/public/images/film.png +0 -0
  861. data/public/images/film_add.png +0 -0
  862. data/public/images/film_delete.png +0 -0
  863. data/public/images/film_edit.png +0 -0
  864. data/public/images/film_error.png +0 -0
  865. data/public/images/film_go.png +0 -0
  866. data/public/images/film_key.png +0 -0
  867. data/public/images/film_link.png +0 -0
  868. data/public/images/film_save.png +0 -0
  869. data/public/images/find.png +0 -0
  870. data/public/images/flag_blue.png +0 -0
  871. data/public/images/flag_green.png +0 -0
  872. data/public/images/flag_orange.png +0 -0
  873. data/public/images/flag_pink.png +0 -0
  874. data/public/images/flag_purple.png +0 -0
  875. data/public/images/flag_red.png +0 -0
  876. data/public/images/flag_yellow.png +0 -0
  877. data/public/images/folder.png +0 -0
  878. data/public/images/folder_add.png +0 -0
  879. data/public/images/folder_bell.png +0 -0
  880. data/public/images/folder_brick.png +0 -0
  881. data/public/images/folder_bug.png +0 -0
  882. data/public/images/folder_camera.png +0 -0
  883. data/public/images/folder_database.png +0 -0
  884. data/public/images/folder_delete.png +0 -0
  885. data/public/images/folder_edit.png +0 -0
  886. data/public/images/folder_error.png +0 -0
  887. data/public/images/folder_explore.png +0 -0
  888. data/public/images/folder_feed.png +0 -0
  889. data/public/images/folder_find.png +0 -0
  890. data/public/images/folder_go.png +0 -0
  891. data/public/images/folder_heart.png +0 -0
  892. data/public/images/folder_image.png +0 -0
  893. data/public/images/folder_key.png +0 -0
  894. data/public/images/folder_lightbulb.png +0 -0
  895. data/public/images/folder_link.png +0 -0
  896. data/public/images/folder_magnify.png +0 -0
  897. data/public/images/folder_page.png +0 -0
  898. data/public/images/folder_page_white.png +0 -0
  899. data/public/images/folder_palette.png +0 -0
  900. data/public/images/folder_picture.png +0 -0
  901. data/public/images/folder_star.png +0 -0
  902. data/public/images/folder_table.png +0 -0
  903. data/public/images/folder_user.png +0 -0
  904. data/public/images/folder_wrench.png +0 -0
  905. data/public/images/font.png +0 -0
  906. data/public/images/font_add.png +0 -0
  907. data/public/images/font_delete.png +0 -0
  908. data/public/images/font_go.png +0 -0
  909. data/public/images/group.png +0 -0
  910. data/public/images/group_add.png +0 -0
  911. data/public/images/group_admin.png +0 -0
  912. data/public/images/group_delete.png +0 -0
  913. data/public/images/group_edit.png +0 -0
  914. data/public/images/group_error.png +0 -0
  915. data/public/images/group_gear.png +0 -0
  916. data/public/images/group_go.png +0 -0
  917. data/public/images/group_key.png +0 -0
  918. data/public/images/group_link.png +0 -0
  919. data/public/images/group_pub.png +0 -0
  920. data/public/images/group_site.png +0 -0
  921. data/public/images/heart.png +0 -0
  922. data/public/images/heart_add.png +0 -0
  923. data/public/images/heart_delete.png +0 -0
  924. data/public/images/help.png +0 -0
  925. data/public/images/home.png +0 -0
  926. data/public/images/hourglass.png +0 -0
  927. data/public/images/hourglass_add.png +0 -0
  928. data/public/images/hourglass_delete.png +0 -0
  929. data/public/images/hourglass_go.png +0 -0
  930. data/public/images/hourglass_link.png +0 -0
  931. data/public/images/house.png +0 -0
  932. data/public/images/house_go.png +0 -0
  933. data/public/images/house_link.png +0 -0
  934. data/public/images/html.png +0 -0
  935. data/public/images/html_add.png +0 -0
  936. data/public/images/html_delete.png +0 -0
  937. data/public/images/html_go.png +0 -0
  938. data/public/images/html_valid.png +0 -0
  939. data/public/images/image.png +0 -0
  940. data/public/images/image_add.png +0 -0
  941. data/public/images/image_delete.png +0 -0
  942. data/public/images/image_edit.png +0 -0
  943. data/public/images/image_link.png +0 -0
  944. data/public/images/images.png +0 -0
  945. data/public/images/img_not_found.png +0 -0
  946. data/public/images/information.png +0 -0
  947. data/public/images/ipod.png +0 -0
  948. data/public/images/ipod_cast.png +0 -0
  949. data/public/images/ipod_cast_add.png +0 -0
  950. data/public/images/ipod_cast_delete.png +0 -0
  951. data/public/images/ipod_sound.png +0 -0
  952. data/public/images/joystick.png +0 -0
  953. data/public/images/joystick_add.png +0 -0
  954. data/public/images/joystick_delete.png +0 -0
  955. data/public/images/joystick_error.png +0 -0
  956. data/public/images/key.png +0 -0
  957. data/public/images/key_add.png +0 -0
  958. data/public/images/key_delete.png +0 -0
  959. data/public/images/key_go.png +0 -0
  960. data/public/images/keyboard.png +0 -0
  961. data/public/images/keyboard_add.png +0 -0
  962. data/public/images/keyboard_delete.png +0 -0
  963. data/public/images/keyboard_magnify.png +0 -0
  964. data/public/images/latex_error.png +0 -0
  965. data/public/images/layers.png +0 -0
  966. data/public/images/layout.png +0 -0
  967. data/public/images/layout_add.png +0 -0
  968. data/public/images/layout_content.png +0 -0
  969. data/public/images/layout_delete.png +0 -0
  970. data/public/images/layout_edit.png +0 -0
  971. data/public/images/layout_error.png +0 -0
  972. data/public/images/layout_header.png +0 -0
  973. data/public/images/layout_link.png +0 -0
  974. data/public/images/layout_sidebar.png +0 -0
  975. data/public/images/lightbulb.png +0 -0
  976. data/public/images/lightbulb_add.png +0 -0
  977. data/public/images/lightbulb_delete.png +0 -0
  978. data/public/images/lightbulb_off.png +0 -0
  979. data/public/images/lightning.png +0 -0
  980. data/public/images/lightning_add.png +0 -0
  981. data/public/images/lightning_delete.png +0 -0
  982. data/public/images/lightning_go.png +0 -0
  983. data/public/images/link.png +0 -0
  984. data/public/images/link_add.png +0 -0
  985. data/public/images/link_break.png +0 -0
  986. data/public/images/link_delete.png +0 -0
  987. data/public/images/link_edit.png +0 -0
  988. data/public/images/link_error.png +0 -0
  989. data/public/images/link_go.png +0 -0
  990. data/public/images/lock.png +0 -0
  991. data/public/images/lock_add.png +0 -0
  992. data/public/images/lock_break.png +0 -0
  993. data/public/images/lock_delete.png +0 -0
  994. data/public/images/lock_edit.png +0 -0
  995. data/public/images/lock_go.png +0 -0
  996. data/public/images/lock_open.png +0 -0
  997. data/public/images/lorry.png +0 -0
  998. data/public/images/lorry_add.png +0 -0
  999. data/public/images/lorry_delete.png +0 -0
  1000. data/public/images/lorry_error.png +0 -0
  1001. data/public/images/lorry_flatbed.png +0 -0
  1002. data/public/images/lorry_go.png +0 -0
  1003. data/public/images/lorry_link.png +0 -0
  1004. data/public/images/magifier_zoom_out.png +0 -0
  1005. data/public/images/magnifier.png +0 -0
  1006. data/public/images/magnifier_zoom_in.png +0 -0
  1007. data/public/images/male.png +0 -0
  1008. data/public/images/map.png +0 -0
  1009. data/public/images/map_add.png +0 -0
  1010. data/public/images/map_delete.png +0 -0
  1011. data/public/images/map_edit.png +0 -0
  1012. data/public/images/map_go.png +0 -0
  1013. data/public/images/map_magnify.png +0 -0
  1014. data/public/images/medal_bronze_1.png +0 -0
  1015. data/public/images/medal_bronze_2.png +0 -0
  1016. data/public/images/medal_bronze_3.png +0 -0
  1017. data/public/images/medal_bronze_add.png +0 -0
  1018. data/public/images/medal_bronze_delete.png +0 -0
  1019. data/public/images/medal_gold_1.png +0 -0
  1020. data/public/images/medal_gold_2.png +0 -0
  1021. data/public/images/medal_gold_3.png +0 -0
  1022. data/public/images/medal_gold_add.png +0 -0
  1023. data/public/images/medal_gold_delete.png +0 -0
  1024. data/public/images/medal_silver_1.png +0 -0
  1025. data/public/images/medal_silver_2.png +0 -0
  1026. data/public/images/medal_silver_3.png +0 -0
  1027. data/public/images/medal_silver_add.png +0 -0
  1028. data/public/images/medal_silver_delete.png +0 -0
  1029. data/public/images/money.png +0 -0
  1030. data/public/images/money_add.png +0 -0
  1031. data/public/images/money_delete.png +0 -0
  1032. data/public/images/money_dollar.png +0 -0
  1033. data/public/images/money_euro.png +0 -0
  1034. data/public/images/money_pound.png +0 -0
  1035. data/public/images/money_yen.png +0 -0
  1036. data/public/images/monitor.png +0 -0
  1037. data/public/images/monitor_add.png +0 -0
  1038. data/public/images/monitor_delete.png +0 -0
  1039. data/public/images/monitor_edit.png +0 -0
  1040. data/public/images/monitor_error.png +0 -0
  1041. data/public/images/monitor_go.png +0 -0
  1042. data/public/images/monitor_lightning.png +0 -0
  1043. data/public/images/monitor_link.png +0 -0
  1044. data/public/images/mouse.png +0 -0
  1045. data/public/images/mouse_add.png +0 -0
  1046. data/public/images/mouse_delete.png +0 -0
  1047. data/public/images/mouse_error.png +0 -0
  1048. data/public/images/music.png +0 -0
  1049. data/public/images/new.png +0 -0
  1050. data/public/images/newspaper.png +0 -0
  1051. data/public/images/newspaper_add.png +0 -0
  1052. data/public/images/newspaper_delete.png +0 -0
  1053. data/public/images/newspaper_go.png +0 -0
  1054. data/public/images/newspaper_link.png +0 -0
  1055. data/public/images/note.png +0 -0
  1056. data/public/images/note_add.png +0 -0
  1057. data/public/images/note_delete.png +0 -0
  1058. data/public/images/note_edit.png +0 -0
  1059. data/public/images/note_error.png +0 -0
  1060. data/public/images/note_go.png +0 -0
  1061. data/public/images/overlays.png +0 -0
  1062. data/public/images/package.png +0 -0
  1063. data/public/images/package_add.png +0 -0
  1064. data/public/images/package_delete.png +0 -0
  1065. data/public/images/package_go.png +0 -0
  1066. data/public/images/package_green.png +0 -0
  1067. data/public/images/package_link.png +0 -0
  1068. data/public/images/page.png +0 -0
  1069. data/public/images/page_add.png +0 -0
  1070. data/public/images/page_attach.png +0 -0
  1071. data/public/images/page_code.png +0 -0
  1072. data/public/images/page_copy.png +0 -0
  1073. data/public/images/page_delete.png +0 -0
  1074. data/public/images/page_edit.png +0 -0
  1075. data/public/images/page_error.png +0 -0
  1076. data/public/images/page_excel.png +0 -0
  1077. data/public/images/page_find.png +0 -0
  1078. data/public/images/page_gear.png +0 -0
  1079. data/public/images/page_go.png +0 -0
  1080. data/public/images/page_green.png +0 -0
  1081. data/public/images/page_key.png +0 -0
  1082. data/public/images/page_lightning.png +0 -0
  1083. data/public/images/page_link.png +0 -0
  1084. data/public/images/page_paintbrush.png +0 -0
  1085. data/public/images/page_paste.png +0 -0
  1086. data/public/images/page_red.png +0 -0
  1087. data/public/images/page_refresh.png +0 -0
  1088. data/public/images/page_save.png +0 -0
  1089. data/public/images/page_white.png +0 -0
  1090. data/public/images/page_white_acrobat.png +0 -0
  1091. data/public/images/page_white_actionscript.png +0 -0
  1092. data/public/images/page_white_add.png +0 -0
  1093. data/public/images/page_white_c.png +0 -0
  1094. data/public/images/page_white_camera.png +0 -0
  1095. data/public/images/page_white_cd.png +0 -0
  1096. data/public/images/page_white_code.png +0 -0
  1097. data/public/images/page_white_code_red.png +0 -0
  1098. data/public/images/page_white_coldfusion.png +0 -0
  1099. data/public/images/page_white_compressed.png +0 -0
  1100. data/public/images/page_white_copy.png +0 -0
  1101. data/public/images/page_white_cplusplus.png +0 -0
  1102. data/public/images/page_white_csharp.png +0 -0
  1103. data/public/images/page_white_cup.png +0 -0
  1104. data/public/images/page_white_database.png +0 -0
  1105. data/public/images/page_white_delete.png +0 -0
  1106. data/public/images/page_white_dvd.png +0 -0
  1107. data/public/images/page_white_edit.png +0 -0
  1108. data/public/images/page_white_error.png +0 -0
  1109. data/public/images/page_white_excel.png +0 -0
  1110. data/public/images/page_white_find.png +0 -0
  1111. data/public/images/page_white_flash.png +0 -0
  1112. data/public/images/page_white_freehand.png +0 -0
  1113. data/public/images/page_white_gear.png +0 -0
  1114. data/public/images/page_white_get.png +0 -0
  1115. data/public/images/page_white_go.png +0 -0
  1116. data/public/images/page_white_h.png +0 -0
  1117. data/public/images/page_white_horizontal.png +0 -0
  1118. data/public/images/page_white_key.png +0 -0
  1119. data/public/images/page_white_lightning.png +0 -0
  1120. data/public/images/page_white_link.png +0 -0
  1121. data/public/images/page_white_magnify.png +0 -0
  1122. data/public/images/page_white_medal.png +0 -0
  1123. data/public/images/page_white_office.png +0 -0
  1124. data/public/images/page_white_paint.png +0 -0
  1125. data/public/images/page_white_paintbrush.png +0 -0
  1126. data/public/images/page_white_paste.png +0 -0
  1127. data/public/images/page_white_php.png +0 -0
  1128. data/public/images/page_white_picture.png +0 -0
  1129. data/public/images/page_white_powerpoint.png +0 -0
  1130. data/public/images/page_white_put.png +0 -0
  1131. data/public/images/page_white_ruby.png +0 -0
  1132. data/public/images/page_white_stack.png +0 -0
  1133. data/public/images/page_white_star.png +0 -0
  1134. data/public/images/page_white_swoosh.png +0 -0
  1135. data/public/images/page_white_text.png +0 -0
  1136. data/public/images/page_white_text_width.png +0 -0
  1137. data/public/images/page_white_tux.png +0 -0
  1138. data/public/images/page_white_vector.png +0 -0
  1139. data/public/images/page_white_visualstudio.png +0 -0
  1140. data/public/images/page_white_width.png +0 -0
  1141. data/public/images/page_white_word.png +0 -0
  1142. data/public/images/page_white_world.png +0 -0
  1143. data/public/images/page_white_wrench.png +0 -0
  1144. data/public/images/page_white_zip.png +0 -0
  1145. data/public/images/page_word.png +0 -0
  1146. data/public/images/page_world.png +0 -0
  1147. data/public/images/paintbrush.png +0 -0
  1148. data/public/images/paintcan.png +0 -0
  1149. data/public/images/palette.png +0 -0
  1150. data/public/images/paste_plain.png +0 -0
  1151. data/public/images/paste_word.png +0 -0
  1152. data/public/images/pencil.png +0 -0
  1153. data/public/images/pencil_add.png +0 -0
  1154. data/public/images/pencil_delete.png +0 -0
  1155. data/public/images/pencil_go.png +0 -0
  1156. data/public/images/phone.png +0 -0
  1157. data/public/images/phone_add.png +0 -0
  1158. data/public/images/phone_delete.png +0 -0
  1159. data/public/images/phone_sound.png +0 -0
  1160. data/public/images/photo.png +0 -0
  1161. data/public/images/photo_add.png +0 -0
  1162. data/public/images/photo_blue.png +0 -0
  1163. data/public/images/photo_delete.png +0 -0
  1164. data/public/images/photo_grey.png +0 -0
  1165. data/public/images/photo_link.png +0 -0
  1166. data/public/images/photos.png +0 -0
  1167. data/public/images/picture.png +0 -0
  1168. data/public/images/picture_add.png +0 -0
  1169. data/public/images/picture_delete.png +0 -0
  1170. data/public/images/picture_edit.png +0 -0
  1171. data/public/images/picture_empty.png +0 -0
  1172. data/public/images/picture_error.png +0 -0
  1173. data/public/images/picture_go.png +0 -0
  1174. data/public/images/picture_key.png +0 -0
  1175. data/public/images/picture_link.png +0 -0
  1176. data/public/images/picture_save.png +0 -0
  1177. data/public/images/pictures.png +0 -0
  1178. data/public/images/pilcrow.png +0 -0
  1179. data/public/images/pill.png +0 -0
  1180. data/public/images/pill_add.png +0 -0
  1181. data/public/images/pill_delete.png +0 -0
  1182. data/public/images/pill_go.png +0 -0
  1183. data/public/images/plugin.png +0 -0
  1184. data/public/images/plugin_add.png +0 -0
  1185. data/public/images/plugin_delete.png +0 -0
  1186. data/public/images/plugin_disabled.png +0 -0
  1187. data/public/images/plugin_edit.png +0 -0
  1188. data/public/images/plugin_error.png +0 -0
  1189. data/public/images/plugin_go.png +0 -0
  1190. data/public/images/plugin_link.png +0 -0
  1191. data/public/images/printer.png +0 -0
  1192. data/public/images/printer_add.png +0 -0
  1193. data/public/images/printer_delete.png +0 -0
  1194. data/public/images/printer_empty.png +0 -0
  1195. data/public/images/printer_error.png +0 -0
  1196. data/public/images/project.png +0 -0
  1197. data/public/images/rails.png +0 -0
  1198. data/public/images/rainbow.png +0 -0
  1199. data/public/images/report.png +0 -0
  1200. data/public/images/report_add.png +0 -0
  1201. data/public/images/report_delete.png +0 -0
  1202. data/public/images/report_disk.png +0 -0
  1203. data/public/images/report_edit.png +0 -0
  1204. data/public/images/report_go.png +0 -0
  1205. data/public/images/report_key.png +0 -0
  1206. data/public/images/report_link.png +0 -0
  1207. data/public/images/report_magnify.png +0 -0
  1208. data/public/images/report_picture.png +0 -0
  1209. data/public/images/report_user.png +0 -0
  1210. data/public/images/report_word.png +0 -0
  1211. data/public/images/resultset_first.png +0 -0
  1212. data/public/images/resultset_last.png +0 -0
  1213. data/public/images/resultset_next.png +0 -0
  1214. data/public/images/resultset_previous.png +0 -0
  1215. data/public/images/rosette.png +0 -0
  1216. data/public/images/row_add.png +0 -0
  1217. data/public/images/row_delete.png +0 -0
  1218. data/public/images/rss.png +0 -0
  1219. data/public/images/rss_add.png +0 -0
  1220. data/public/images/rss_delete.png +0 -0
  1221. data/public/images/rss_go.png +0 -0
  1222. data/public/images/rss_valid.png +0 -0
  1223. data/public/images/ruby.png +0 -0
  1224. data/public/images/ruby_add.png +0 -0
  1225. data/public/images/ruby_delete.png +0 -0
  1226. data/public/images/ruby_gear.png +0 -0
  1227. data/public/images/ruby_get.png +0 -0
  1228. data/public/images/ruby_go.png +0 -0
  1229. data/public/images/ruby_key.png +0 -0
  1230. data/public/images/ruby_link.png +0 -0
  1231. data/public/images/ruby_put.png +0 -0
  1232. data/public/images/script.png +0 -0
  1233. data/public/images/script_add.png +0 -0
  1234. data/public/images/script_code.png +0 -0
  1235. data/public/images/script_code_red.png +0 -0
  1236. data/public/images/script_delete.png +0 -0
  1237. data/public/images/script_edit.png +0 -0
  1238. data/public/images/script_error.png +0 -0
  1239. data/public/images/script_gear.png +0 -0
  1240. data/public/images/script_go.png +0 -0
  1241. data/public/images/script_key.png +0 -0
  1242. data/public/images/script_lightning.png +0 -0
  1243. data/public/images/script_link.png +0 -0
  1244. data/public/images/script_palette.png +0 -0
  1245. data/public/images/script_save.png +0 -0
  1246. data/public/images/server.png +0 -0
  1247. data/public/images/server_add.png +0 -0
  1248. data/public/images/server_chart.png +0 -0
  1249. data/public/images/server_compressed.png +0 -0
  1250. data/public/images/server_connect.png +0 -0
  1251. data/public/images/server_database.png +0 -0
  1252. data/public/images/server_delete.png +0 -0
  1253. data/public/images/server_edit.png +0 -0
  1254. data/public/images/server_error.png +0 -0
  1255. data/public/images/server_go.png +0 -0
  1256. data/public/images/server_key.png +0 -0
  1257. data/public/images/server_lightning.png +0 -0
  1258. data/public/images/server_link.png +0 -0
  1259. data/public/images/server_uncompressed.png +0 -0
  1260. data/public/images/shading.png +0 -0
  1261. data/public/images/shape_align_bottom.png +0 -0
  1262. data/public/images/shape_align_center.png +0 -0
  1263. data/public/images/shape_align_left.png +0 -0
  1264. data/public/images/shape_align_middle.png +0 -0
  1265. data/public/images/shape_align_right.png +0 -0
  1266. data/public/images/shape_align_top.png +0 -0
  1267. data/public/images/shape_flip_horizontal.png +0 -0
  1268. data/public/images/shape_flip_vertical.png +0 -0
  1269. data/public/images/shape_group.png +0 -0
  1270. data/public/images/shape_handles.png +0 -0
  1271. data/public/images/shape_move_back.png +0 -0
  1272. data/public/images/shape_move_backwards.png +0 -0
  1273. data/public/images/shape_move_forwards.png +0 -0
  1274. data/public/images/shape_move_front.png +0 -0
  1275. data/public/images/shape_rotate_anticlockwise.png +0 -0
  1276. data/public/images/shape_rotate_clockwise.png +0 -0
  1277. data/public/images/shape_square.png +0 -0
  1278. data/public/images/shape_square_add.png +0 -0
  1279. data/public/images/shape_square_delete.png +0 -0
  1280. data/public/images/shape_square_edit.png +0 -0
  1281. data/public/images/shape_square_error.png +0 -0
  1282. data/public/images/shape_square_go.png +0 -0
  1283. data/public/images/shape_square_key.png +0 -0
  1284. data/public/images/shape_square_link.png +0 -0
  1285. data/public/images/shape_ungroup.png +0 -0
  1286. data/public/images/shield.png +0 -0
  1287. data/public/images/shield_add.png +0 -0
  1288. data/public/images/shield_delete.png +0 -0
  1289. data/public/images/shield_go.png +0 -0
  1290. data/public/images/silk.html +1495 -0
  1291. data/public/images/sitemap.png +0 -0
  1292. data/public/images/sitemap_color.png +0 -0
  1293. data/public/images/sound.png +0 -0
  1294. data/public/images/sound_add.png +0 -0
  1295. data/public/images/sound_delete.png +0 -0
  1296. data/public/images/sound_low.png +0 -0
  1297. data/public/images/sound_mute.png +0 -0
  1298. data/public/images/sound_none.png +0 -0
  1299. data/public/images/spellcheck.png +0 -0
  1300. data/public/images/sport_8ball.png +0 -0
  1301. data/public/images/sport_basketball.png +0 -0
  1302. data/public/images/sport_football.png +0 -0
  1303. data/public/images/sport_golf.png +0 -0
  1304. data/public/images/sport_raquet.png +0 -0
  1305. data/public/images/sport_shuttlecock.png +0 -0
  1306. data/public/images/sport_soccer.png +0 -0
  1307. data/public/images/sport_tennis.png +0 -0
  1308. data/public/images/star.png +0 -0
  1309. data/public/images/status_away.png +0 -0
  1310. data/public/images/status_busy.png +0 -0
  1311. data/public/images/status_offline.png +0 -0
  1312. data/public/images/status_online.png +0 -0
  1313. data/public/images/stop.png +0 -0
  1314. data/public/images/style.png +0 -0
  1315. data/public/images/style_add.png +0 -0
  1316. data/public/images/style_delete.png +0 -0
  1317. data/public/images/style_edit.png +0 -0
  1318. data/public/images/style_go.png +0 -0
  1319. data/public/images/sum.png +0 -0
  1320. data/public/images/swf/xspf/Main.as +55 -0
  1321. data/public/images/swf/xspf/com/zuardi/musicplayer/MusicButton.as +557 -0
  1322. data/public/images/swf/xspf/com/zuardi/musicplayer/MusicPlayer.as +118 -0
  1323. data/public/images/swf/xspf/com/zuardi/musicplayer/Playlist.as +127 -0
  1324. data/public/images/swf/xspf/com/zuardi/musicplayer/ProgressiveSlider.as +66 -0
  1325. data/public/images/swf/xspf/license.txt +10 -0
  1326. data/public/images/swf/xspf/musicplayer.swf +0 -0
  1327. data/public/images/swf/xspf/musicplayer_f6.swf +0 -0
  1328. data/public/images/swf/xspf/musicplayerbtn.fla +0 -0
  1329. data/public/images/swf/xspf/parameters.as +39 -0
  1330. data/public/images/tab.png +0 -0
  1331. data/public/images/tab_add.png +0 -0
  1332. data/public/images/tab_delete.png +0 -0
  1333. data/public/images/tab_edit.png +0 -0
  1334. data/public/images/tab_go.png +0 -0
  1335. data/public/images/table.png +0 -0
  1336. data/public/images/table_add.png +0 -0
  1337. data/public/images/table_delete.png +0 -0
  1338. data/public/images/table_edit.png +0 -0
  1339. data/public/images/table_error.png +0 -0
  1340. data/public/images/table_gear.png +0 -0
  1341. data/public/images/table_go.png +0 -0
  1342. data/public/images/table_key.png +0 -0
  1343. data/public/images/table_lightning.png +0 -0
  1344. data/public/images/table_link.png +0 -0
  1345. data/public/images/table_multiple.png +0 -0
  1346. data/public/images/table_refresh.png +0 -0
  1347. data/public/images/table_relationship.png +0 -0
  1348. data/public/images/table_row_delete.png +0 -0
  1349. data/public/images/table_row_insert.png +0 -0
  1350. data/public/images/table_save.png +0 -0
  1351. data/public/images/table_sort.png +0 -0
  1352. data/public/images/tag.png +0 -0
  1353. data/public/images/tag_blue.png +0 -0
  1354. data/public/images/tag_blue_add.png +0 -0
  1355. data/public/images/tag_blue_delete.png +0 -0
  1356. data/public/images/tag_blue_edit.png +0 -0
  1357. data/public/images/tag_green.png +0 -0
  1358. data/public/images/tag_orange.png +0 -0
  1359. data/public/images/tag_pink.png +0 -0
  1360. data/public/images/tag_purple.png +0 -0
  1361. data/public/images/tag_red.png +0 -0
  1362. data/public/images/tag_yellow.png +0 -0
  1363. data/public/images/target.png +0 -0
  1364. data/public/images/telephone.png +0 -0
  1365. data/public/images/telephone_add.png +0 -0
  1366. data/public/images/telephone_delete.png +0 -0
  1367. data/public/images/telephone_edit.png +0 -0
  1368. data/public/images/telephone_error.png +0 -0
  1369. data/public/images/telephone_go.png +0 -0
  1370. data/public/images/telephone_key.png +0 -0
  1371. data/public/images/telephone_link.png +0 -0
  1372. data/public/images/television.png +0 -0
  1373. data/public/images/television_add.png +0 -0
  1374. data/public/images/television_delete.png +0 -0
  1375. data/public/images/text_align_center.png +0 -0
  1376. data/public/images/text_align_justify.png +0 -0
  1377. data/public/images/text_align_left.png +0 -0
  1378. data/public/images/text_align_right.png +0 -0
  1379. data/public/images/text_allcaps.png +0 -0
  1380. data/public/images/text_bold.png +0 -0
  1381. data/public/images/text_columns.png +0 -0
  1382. data/public/images/text_dropcaps.png +0 -0
  1383. data/public/images/text_heading_1.png +0 -0
  1384. data/public/images/text_heading_2.png +0 -0
  1385. data/public/images/text_heading_3.png +0 -0
  1386. data/public/images/text_heading_4.png +0 -0
  1387. data/public/images/text_heading_5.png +0 -0
  1388. data/public/images/text_heading_6.png +0 -0
  1389. data/public/images/text_horizontalrule.png +0 -0
  1390. data/public/images/text_indent.png +0 -0
  1391. data/public/images/text_indent_remove.png +0 -0
  1392. data/public/images/text_italic.png +0 -0
  1393. data/public/images/text_kerning.png +0 -0
  1394. data/public/images/text_letter_omega.png +0 -0
  1395. data/public/images/text_letterspacing.png +0 -0
  1396. data/public/images/text_linespacing.png +0 -0
  1397. data/public/images/text_list_bullets.png +0 -0
  1398. data/public/images/text_list_numbers.png +0 -0
  1399. data/public/images/text_lowercase.png +0 -0
  1400. data/public/images/text_padding_bottom.png +0 -0
  1401. data/public/images/text_padding_left.png +0 -0
  1402. data/public/images/text_padding_right.png +0 -0
  1403. data/public/images/text_padding_top.png +0 -0
  1404. data/public/images/text_replace.png +0 -0
  1405. data/public/images/text_signature.png +0 -0
  1406. data/public/images/text_smallcaps.png +0 -0
  1407. data/public/images/text_strikethrough.png +0 -0
  1408. data/public/images/text_subscript.png +0 -0
  1409. data/public/images/text_superscript.png +0 -0
  1410. data/public/images/text_underline.png +0 -0
  1411. data/public/images/text_uppercase.png +0 -0
  1412. data/public/images/textfield.png +0 -0
  1413. data/public/images/textfield_add.png +0 -0
  1414. data/public/images/textfield_delete.png +0 -0
  1415. data/public/images/textfield_key.png +0 -0
  1416. data/public/images/textfield_rename.png +0 -0
  1417. data/public/images/thumb_down.png +0 -0
  1418. data/public/images/thumb_up.png +0 -0
  1419. data/public/images/tick.png +0 -0
  1420. data/public/images/time.png +0 -0
  1421. data/public/images/time_add.png +0 -0
  1422. data/public/images/time_delete.png +0 -0
  1423. data/public/images/time_go.png +0 -0
  1424. data/public/images/timeline_marker.png +0 -0
  1425. data/public/images/transmit.png +0 -0
  1426. data/public/images/transmit_add.png +0 -0
  1427. data/public/images/transmit_blue.png +0 -0
  1428. data/public/images/transmit_delete.png +0 -0
  1429. data/public/images/transmit_edit.png +0 -0
  1430. data/public/images/transmit_error.png +0 -0
  1431. data/public/images/transmit_go.png +0 -0
  1432. data/public/images/tux.png +0 -0
  1433. data/public/images/user.png +0 -0
  1434. data/public/images/user_add.png +0 -0
  1435. data/public/images/user_admin.png +0 -0
  1436. data/public/images/user_comment.png +0 -0
  1437. data/public/images/user_delete.png +0 -0
  1438. data/public/images/user_edit.png +0 -0
  1439. data/public/images/user_female.png +0 -0
  1440. data/public/images/user_go.png +0 -0
  1441. data/public/images/user_gray.png +0 -0
  1442. data/public/images/user_green.png +0 -0
  1443. data/public/images/user_orange.png +0 -0
  1444. data/public/images/user_pub.png +0 -0
  1445. data/public/images/user_red.png +0 -0
  1446. data/public/images/user_su.png +0 -0
  1447. data/public/images/user_suit.png +0 -0
  1448. data/public/images/validate.png +0 -0
  1449. data/public/images/valider.png +0 -0
  1450. data/public/images/vcard.png +0 -0
  1451. data/public/images/vcard_add.png +0 -0
  1452. data/public/images/vcard_delete.png +0 -0
  1453. data/public/images/vcard_edit.png +0 -0
  1454. data/public/images/vector.png +0 -0
  1455. data/public/images/vector_add.png +0 -0
  1456. data/public/images/vector_delete.png +0 -0
  1457. data/public/images/wand.png +0 -0
  1458. data/public/images/weather_clouds.png +0 -0
  1459. data/public/images/weather_cloudy.png +0 -0
  1460. data/public/images/weather_lightning.png +0 -0
  1461. data/public/images/weather_rain.png +0 -0
  1462. data/public/images/weather_snow.png +0 -0
  1463. data/public/images/weather_sun.png +0 -0
  1464. data/public/images/webcam.png +0 -0
  1465. data/public/images/webcam_add.png +0 -0
  1466. data/public/images/webcam_delete.png +0 -0
  1467. data/public/images/webcam_error.png +0 -0
  1468. data/public/images/world.png +0 -0
  1469. data/public/images/world_add.png +0 -0
  1470. data/public/images/world_delete.png +0 -0
  1471. data/public/images/world_edit.png +0 -0
  1472. data/public/images/world_go.png +0 -0
  1473. data/public/images/world_link.png +0 -0
  1474. data/public/images/wrench.png +0 -0
  1475. data/public/images/wrench_orange.png +0 -0
  1476. data/public/images/xhtml.png +0 -0
  1477. data/public/images/xhtml_add.png +0 -0
  1478. data/public/images/xhtml_delete.png +0 -0
  1479. data/public/images/xhtml_go.png +0 -0
  1480. data/public/images/xhtml_valid.png +0 -0
  1481. data/public/images/zoom.png +0 -0
  1482. data/public/images/zoom_in.png +0 -0
  1483. data/public/images/zoom_out.png +0 -0
  1484. data/public/img/logo.png +0 -0
  1485. data/public/javascripts/application.js +2 -0
  1486. data/public/javascripts/builder.js +136 -0
  1487. data/public/javascripts/controls.js +965 -0
  1488. data/public/javascripts/dragdrop.js +975 -0
  1489. data/public/javascripts/effects.js +1130 -0
  1490. data/public/javascripts/prototype.js +4320 -0
  1491. data/public/javascripts/scriptaculous.js +60 -0
  1492. data/public/javascripts/slider.js +275 -0
  1493. data/public/javascripts/sound.js +55 -0
  1494. data/public/javascripts/tablekit.js +965 -0
  1495. data/public/javascripts/unittest.js +568 -0
  1496. data/public/javascripts/upload-progress.js +133 -0
  1497. data/public/javascripts/zena.js +501 -0
  1498. data/public/robots.txt +1 -0
  1499. data/public/stylesheets/admin.css +77 -0
  1500. data/public/stylesheets/calendar.css +55 -0
  1501. data/public/stylesheets/code.css +67 -0
  1502. data/public/stylesheets/comment.css +43 -0
  1503. data/public/stylesheets/csshover2.htc +121 -0
  1504. data/public/stylesheets/default.css +85 -0
  1505. data/public/stylesheets/popup.css +200 -0
  1506. data/public/stylesheets/reset.css +33 -0
  1507. data/public/stylesheets/search.css +19 -0
  1508. data/public/stylesheets/upload-progress.css +4 -0
  1509. data/public/stylesheets/wiki.css +100 -0
  1510. data/public/stylesheets/zen.css +230 -0
  1511. data/public/stylesheets/zena.css +78 -0
  1512. data/rails/init.rb +2 -0
  1513. data/tasks/ann.rake +80 -0
  1514. data/tasks/bones.rake +20 -0
  1515. data/tasks/gem.rake +201 -0
  1516. data/tasks/git.rake +40 -0
  1517. data/tasks/notes.rake +27 -0
  1518. data/tasks/post_load.rake +34 -0
  1519. data/tasks/rdoc.rake +51 -0
  1520. data/tasks/rubyforge.rake +55 -0
  1521. data/tasks/setup.rb +292 -0
  1522. data/tasks/spec.rake +54 -0
  1523. data/tasks/svn.rake +47 -0
  1524. data/tasks/test.rake +40 -0
  1525. data/tasks/zentest.rake +36 -0
  1526. data/test/fixtures/comments.yml +126 -0
  1527. data/test/fixtures/contact_contents.yml +132 -0
  1528. data/test/fixtures/data_entries.yml +65 -0
  1529. data/test/fixtures/discussions.yml +48 -0
  1530. data/test/fixtures/document_contents.yml +108 -0
  1531. data/test/fixtures/dyn_attributes.yml +66 -0
  1532. data/test/fixtures/files/Node-test.zafu +307 -0
  1533. data/test/fixtures/files/bird.jpg +0 -0
  1534. data/test/fixtures/files/bomb.png +0 -0
  1535. data/test/fixtures/files/exif_sample.jpg +0 -0
  1536. data/test/fixtures/files/flower.jpg +0 -0
  1537. data/test/fixtures/files/forest.pdf +0 -0
  1538. data/test/fixtures/files/import.tgz +0 -0
  1539. data/test/fixtures/files/jet_30.zip +0 -0
  1540. data/test/fixtures/files/lake.jpg +0 -0
  1541. data/test/fixtures/files/letter.zip +0 -0
  1542. data/test/fixtures/files/other.txt +1 -0
  1543. data/test/fixtures/files/simple.zml.gz +0 -0
  1544. data/test/fixtures/files/some.txt +1 -0
  1545. data/test/fixtures/files/translations_de.yml +4 -0
  1546. data/test/fixtures/files/translations_fr.yml +4 -0
  1547. data/test/fixtures/files/tree.jpg +0 -0
  1548. data/test/fixtures/files/water.pdf +0 -0
  1549. data/test/fixtures/groups.yml +86 -0
  1550. data/test/fixtures/groups_users.yml +81 -0
  1551. data/test/fixtures/iformats.yml +28 -0
  1552. data/test/fixtures/import/photos.en.zml +11 -0
  1553. data/test/fixtures/import/photos/bird.jpg +0 -0
  1554. data/test/fixtures/import/photos/bird.jpg.en.zml +1 -0
  1555. data/test/fixtures/import/photos/bird.jpg.fr.zml +1 -0
  1556. data/test/fixtures/import/photos/document.yml.en +4 -0
  1557. data/test/fixtures/import/photos/document.yml.fr +4 -0
  1558. data/test/fixtures/import/simple.zml +8 -0
  1559. data/test/fixtures/links.yml +313 -0
  1560. data/test/fixtures/nodes.yml +2592 -0
  1561. data/test/fixtures/relations.yml +126 -0
  1562. data/test/fixtures/sites.yml +58 -0
  1563. data/test/fixtures/template_contents.yml +172 -0
  1564. data/test/fixtures/users.yml +167 -0
  1565. data/test/fixtures/versions.yml +1909 -0
  1566. data/test/fixtures/virtual_classes.yml +87 -0
  1567. data/test/fixtures/zips.yml +15 -0
  1568. data/test/functional/application_controller_test.rb +136 -0
  1569. data/test/functional/calendar_controller_test.rb +25 -0
  1570. data/test/functional/comments_controller_test.rb +59 -0
  1571. data/test/functional/data_entries_controller_test.rb +22 -0
  1572. data/test/functional/discussion_controller_test.rb +20 -0
  1573. data/test/functional/documents_controller_test.rb +155 -0
  1574. data/test/functional/groups_controller_test.rb +109 -0
  1575. data/test/functional/iformats_controller_test.rb +115 -0
  1576. data/test/functional/links_controller_test.rb +26 -0
  1577. data/test/functional/nodes_controller_test.rb +448 -0
  1578. data/test/functional/note_controller_test.rb +53 -0
  1579. data/test/functional/preferences_controller_test.rb +11 -0
  1580. data/test/functional/relations_controller_test.rb +55 -0
  1581. data/test/functional/search_controller_test.rb +41 -0
  1582. data/test/functional/sessions_controller_test.rb +73 -0
  1583. data/test/functional/sites_controller_test.rb +102 -0
  1584. data/test/functional/users_controller_test.rb +28 -0
  1585. data/test/functional/versions_controller_test.rb +99 -0
  1586. data/test/functional/virtual_classes_controller_test.rb +62 -0
  1587. data/test/helpers/node_query/basic.yml +149 -0
  1588. data/test/helpers/node_query/comments.yml +18 -0
  1589. data/test/helpers/node_query/complex.yml +98 -0
  1590. data/test/helpers/node_query/filters.yml +105 -0
  1591. data/test/helpers/node_query/relations.yml +43 -0
  1592. data/test/helpers/node_query_test.rb +117 -0
  1593. data/test/integration/multiple_hosts_test.rb +98 -0
  1594. data/test/integration/multiversion_test.rb +164 -0
  1595. data/test/integration/navigation_test.rb +283 -0
  1596. data/test/sites/README +2 -0
  1597. data/test/sites/complex/complex.png +0 -0
  1598. data/test/sites/complex/groups.yml +9 -0
  1599. data/test/sites/complex/links.yml +75 -0
  1600. data/test/sites/complex/nodes.yml +253 -0
  1601. data/test/sites/complex/relations.yml +11 -0
  1602. data/test/sites/complex/sites.yml +13 -0
  1603. data/test/sites/complex/users.yml +20 -0
  1604. data/test/sites/complex/versions.yml +1 -0
  1605. data/test/sites/complex/virtual_classes.yml +19 -0
  1606. data/test/sites/ocean/contact_contents.yml +19 -0
  1607. data/test/sites/ocean/groups.yml +9 -0
  1608. data/test/sites/ocean/iformats.yml +7 -0
  1609. data/test/sites/ocean/nodes.yml +36 -0
  1610. data/test/sites/ocean/sites.yml +14 -0
  1611. data/test/sites/ocean/template_contents.yml +8 -0
  1612. data/test/sites/ocean/users.yml +33 -0
  1613. data/test/sites/ocean/versions.yml +48 -0
  1614. data/test/sites/zena/comments.yml +82 -0
  1615. data/test/sites/zena/contact_contents.yml +55 -0
  1616. data/test/sites/zena/data_entries.yml +42 -0
  1617. data/test/sites/zena/discussions.yml +30 -0
  1618. data/test/sites/zena/document_contents.yml +76 -0
  1619. data/test/sites/zena/dyn_attributes.yml +43 -0
  1620. data/test/sites/zena/groups.yml +11 -0
  1621. data/test/sites/zena/iformats.yml +6 -0
  1622. data/test/sites/zena/links.yml +49 -0
  1623. data/test/sites/zena/nodes.yml +338 -0
  1624. data/test/sites/zena/relations.yml +66 -0
  1625. data/test/sites/zena/sites.yml +13 -0
  1626. data/test/sites/zena/template_contents.yml +103 -0
  1627. data/test/sites/zena/users.yml +48 -0
  1628. data/test/sites/zena/versions.yml +558 -0
  1629. data/test/sites/zena/virtual_classes.yml +23 -0
  1630. data/test/test_helper.rb +62 -0
  1631. data/test/test_zena.rb +138 -0
  1632. data/test/unit/cache_test.rb +62 -0
  1633. data/test/unit/cached_page_test.rb +165 -0
  1634. data/test/unit/comment_test.rb +185 -0
  1635. data/test/unit/contact_content_test.rb +33 -0
  1636. data/test/unit/contact_test.rb +39 -0
  1637. data/test/unit/contact_version_test.rb +48 -0
  1638. data/test/unit/core_ext_test.rb +48 -0
  1639. data/test/unit/data_entry_test.rb +92 -0
  1640. data/test/unit/discussion_test.rb +59 -0
  1641. data/test/unit/document_content_test.rb +110 -0
  1642. data/test/unit/document_test.rb +234 -0
  1643. data/test/unit/document_version_test.rb +11 -0
  1644. data/test/unit/dyn_attributes_test.rb +229 -0
  1645. data/test/unit/exif_data_test.rb +66 -0
  1646. data/test/unit/group_test.rb +142 -0
  1647. data/test/unit/iformat_test.rb +190 -0
  1648. data/test/unit/image_builder_test.rb +214 -0
  1649. data/test/unit/image_content_test.rb +154 -0
  1650. data/test/unit/image_test.rb +311 -0
  1651. data/test/unit/image_version_test.rb +18 -0
  1652. data/test/unit/letter_test.rb +9 -0
  1653. data/test/unit/link_test.rb +32 -0
  1654. data/test/unit/multiversion_test.rb +1008 -0
  1655. data/test/unit/node_test.rb +1578 -0
  1656. data/test/unit/note_test.rb +85 -0
  1657. data/test/unit/page_test.rb +79 -0
  1658. data/test/unit/project_test.rb +32 -0
  1659. data/test/unit/reference_test.rb +9 -0
  1660. data/test/unit/relation_proxy_test.rb +409 -0
  1661. data/test/unit/relation_test.rb +48 -0
  1662. data/test/unit/section_test.rb +32 -0
  1663. data/test/unit/secure_test.rb +939 -0
  1664. data/test/unit/site_test.rb +236 -0
  1665. data/test/unit/skin_test.rb +18 -0
  1666. data/test/unit/template_content_test.rb +9 -0
  1667. data/test/unit/template_test.rb +357 -0
  1668. data/test/unit/template_version_test.rb +7 -0
  1669. data/test/unit/text_document_content_test.rb +8 -0
  1670. data/test/unit/text_document_test.rb +139 -0
  1671. data/test/unit/text_document_version_test.rb +37 -0
  1672. data/test/unit/user_test.rb +295 -0
  1673. data/test/unit/version_test.rb +312 -0
  1674. data/test/unit/virtual_class_test.rb +242 -0
  1675. data/test/unit/zena/db_test.rb +94 -0
  1676. data/test/unit/zena/parser/latex.yml +14 -0
  1677. data/test/unit/zena/parser/zafu.yml +391 -0
  1678. data/test/unit/zena/parser/zafu_asset.yml +43 -0
  1679. data/test/unit/zena/parser/zafu_insight.yml +3 -0
  1680. data/test/unit/zena/parser/zazen.yml +211 -0
  1681. data/test/unit/zena/parser_test.rb +184 -0
  1682. data/test/unit/zena/unit/test_case_test.rb +12 -0
  1683. data/test/unit/zena/use/calendar_test.rb +49 -0
  1684. data/test/unit/zena/use/dates_model_methods_test.rb +41 -0
  1685. data/test/unit/zena/use/dates_string_methods_test.rb +94 -0
  1686. data/test/unit/zena/use/dates_view_methods_test.rb +158 -0
  1687. data/test/unit/zena/use/html_tags_test.rb +244 -0
  1688. data/test/unit/zena/use/i18n_test.rb +34 -0
  1689. data/test/unit/zena/use/nested_attributes_alias_model_test.rb +104 -0
  1690. data/test/unit/zena/use/nested_attributes_alias_view_test.rb +99 -0
  1691. data/test/unit/zena/use/refactor_test.rb +52 -0
  1692. data/test/unit/zena/use/rendering_test.rb +23 -0
  1693. data/test/unit/zena/use/urls_test.rb +119 -0
  1694. data/test/unit/zena/use/zafu_test.rb +21 -0
  1695. data/test/unit/zena/use/zazen_test.rb +230 -0
  1696. data/test/unit/zena/zena_tags/ajax.yml +233 -0
  1697. data/test/unit/zena/zena_tags/apphelper.yml +85 -0
  1698. data/test/unit/zena/zena_tags/basic.yml +1295 -0
  1699. data/test/unit/zena/zena_tags/complex.yml +249 -0
  1700. data/test/unit/zena/zena_tags/data.yml +73 -0
  1701. data/test/unit/zena/zena_tags/errors.yml +71 -0
  1702. data/test/unit/zena/zena_tags/eval.yml +51 -0
  1703. data/test/unit/zena/zena_tags/relations.yml +411 -0
  1704. data/test/unit/zena/zena_tags/zazen.yml +84 -0
  1705. data/test/unit/zena/zena_tags_test.rb +235 -0
  1706. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand +24 -0
  1707. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand +58 -0
  1708. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand +88 -0
  1709. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand +27 -0
  1710. data/vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand +23 -0
  1711. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences +19 -0
  1712. data/vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences +19 -0
  1713. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet +16 -0
  1714. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet +16 -0
  1715. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet +16 -0
  1716. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet +18 -0
  1717. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet +18 -0
  1718. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet +16 -0
  1719. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet +18 -0
  1720. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet +16 -0
  1721. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet +16 -0
  1722. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet +16 -0
  1723. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet +16 -0
  1724. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet +16 -0
  1725. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet +16 -0
  1726. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet +18 -0
  1727. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet +16 -0
  1728. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet +17 -0
  1729. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet +17 -0
  1730. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet +18 -0
  1731. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet +22 -0
  1732. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet +23 -0
  1733. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet +25 -0
  1734. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet +18 -0
  1735. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet +18 -0
  1736. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet +18 -0
  1737. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet +16 -0
  1738. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet +16 -0
  1739. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet +20 -0
  1740. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet +20 -0
  1741. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet +16 -0
  1742. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet +16 -0
  1743. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet +16 -0
  1744. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet +16 -0
  1745. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet +16 -0
  1746. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet +16 -0
  1747. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet +16 -0
  1748. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet +18 -0
  1749. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet +16 -0
  1750. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet +16 -0
  1751. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet +16 -0
  1752. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet +16 -0
  1753. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet +16 -0
  1754. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet +16 -0
  1755. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet +16 -0
  1756. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet +16 -0
  1757. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet +16 -0
  1758. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet +16 -0
  1759. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet +16 -0
  1760. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet +16 -0
  1761. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet +16 -0
  1762. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet +16 -0
  1763. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet +16 -0
  1764. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet +16 -0
  1765. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet +16 -0
  1766. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet +16 -0
  1767. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet +16 -0
  1768. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet +16 -0
  1769. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet +16 -0
  1770. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet +16 -0
  1771. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet +16 -0
  1772. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet +16 -0
  1773. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet +16 -0
  1774. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet +16 -0
  1775. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet +16 -0
  1776. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet +16 -0
  1777. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet +16 -0
  1778. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet +16 -0
  1779. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet +16 -0
  1780. data/vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet +16 -0
  1781. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb +39 -0
  1782. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb +104 -0
  1783. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb +14 -0
  1784. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb +17 -0
  1785. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt +13 -0
  1786. data/vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb +25 -0
  1787. data/vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage +166 -0
  1788. data/vendor/TextMate/Ruby Shoulda.tmbundle/info.plist +304 -0
  1789. data/vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand +37 -0
  1790. data/vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand +53 -0
  1791. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb +74 -0
  1792. data/vendor/TextMate/Zena.tmbundle/info.plist +15 -0
  1793. data/vendor/apache_upload/mod_upload_progress.c +813 -0
  1794. data/vendor/bricks/20070122-172926.txt +282 -0
  1795. data/vendor/plugins/ar_mysql_full_text/README +15 -0
  1796. data/vendor/plugins/ar_mysql_full_text/init.rb +1 -0
  1797. data/vendor/plugins/ar_mysql_full_text/lib/ar_mysql_full_text.rb +69 -0
  1798. data/vendor/plugins/gettext_i18n_rails/README.markdown +139 -0
  1799. data/vendor/plugins/gettext_i18n_rails/Rakefile +6 -0
  1800. data/vendor/plugins/gettext_i18n_rails/init.rb +10 -0
  1801. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails.rb +21 -0
  1802. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/action_controller.rb +6 -0
  1803. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/active_record.rb +17 -0
  1804. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/backend.rb +47 -0
  1805. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/haml_parser.rb +43 -0
  1806. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/i18n_hacks.rb +10 -0
  1807. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/model_attributes_finder.rb +46 -0
  1808. data/vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/ruby_gettext_extractor.rb +136 -0
  1809. data/vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/action_controller_spec.rb +36 -0
  1810. data/vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/active_record_spec.rb +50 -0
  1811. data/vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/backend_spec.rb +41 -0
  1812. data/vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails_spec.rb +43 -0
  1813. data/vendor/plugins/gettext_i18n_rails/spec/spec_helper.rb +15 -0
  1814. data/vendor/plugins/gettext_i18n_rails/tasks/gettext_rails_i18n.rake +73 -0
  1815. data/vendor/plugins/responds_to_parent/MIT-LICENSE +20 -0
  1816. data/vendor/plugins/responds_to_parent/README +42 -0
  1817. data/vendor/plugins/responds_to_parent/Rakefile +22 -0
  1818. data/vendor/plugins/responds_to_parent/init.rb +1 -0
  1819. data/vendor/plugins/responds_to_parent/lib/responds_to_parent.rb +46 -0
  1820. data/vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb +115 -0
  1821. data/vendor/plugins/rjs-assertions/MIT-LICENSE +20 -0
  1822. data/vendor/plugins/rjs-assertions/README +64 -0
  1823. data/vendor/plugins/rjs-assertions/init.rb +1 -0
  1824. data/vendor/plugins/rjs-assertions/lib/rjs-assertions.rb +99 -0
  1825. data/vendor/rails_patches/support_for_inverse_relationships_on_active_record_objects.diff +739 -0
  1826. metadata +2075 -0
@@ -0,0 +1,1909 @@
1
+ # Fixtures generated from content of 'sites' folder by Zena::FoxyVersionsParser (rake zena:build_fixtures)
2
+
3
+
4
+
5
+ # ========== test/sites/complex ===========
6
+
7
+ # ========== test/sites/ocean ===========
8
+
9
+ ocean_ocean_en:
10
+ id: 985793144
11
+ site_id: 1814253598
12
+ node_id: 345907766
13
+ user_id: 1321665606
14
+ created_at: 2006-03-10
15
+ updated_at: 2006-04-11
16
+ lang: en
17
+ publish_from: 2006-03-10
18
+ status: 50
19
+ number: 1
20
+ status: 50
21
+ title: Deep Ocean
22
+ type: Version
23
+ comment: new site
24
+ summary: The deep sound of peace
25
+ text: Our oceans, when kept full of life, are full of animals
26
+
27
+
28
+
29
+ ocean_incognito_en:
30
+ id: 499751115
31
+ site_id: 1814253598
32
+ node_id: 211907523
33
+ user_id: 1321665606
34
+ created_at: 2006-03-10
35
+ updated_at: 2006-04-11
36
+ lang: en
37
+ publish_from: 2006-03-10
38
+ summary: ""
39
+ text: ""
40
+ status: 50
41
+ number: 1
42
+ status: 50
43
+ title: Miss incognito
44
+ type: ContactVersion
45
+ comment: anonymous user
46
+
47
+
48
+
49
+ ocean_whale_en:
50
+ id: 597392822
51
+ site_id: 1814253598
52
+ node_id: 913995374
53
+ user_id: 1321665606
54
+ created_at: 2006-03-10
55
+ updated_at: 2006-04-11
56
+ lang: en
57
+ publish_from: 2006-03-10
58
+ summary: ""
59
+ text: ""
60
+ status: 50
61
+ number: 1
62
+ status: 50
63
+ title: Miss Whale
64
+ type: ContactVersion
65
+ comment: admin user
66
+
67
+
68
+ ocean_skin_en:
69
+ id: 1530004330
70
+ site_id: 1814253598
71
+ node_id: 952296023
72
+ user_id: 1321665606
73
+ created_at: 2006-03-10
74
+ updated_at: 2006-04-11
75
+ lang: en
76
+ publish_from: 2006-03-10
77
+ comment: ""
78
+ summary: ""
79
+ text: ""
80
+ status: 50
81
+ number: 1
82
+ status: 50
83
+ title: skin
84
+ type: TemplateVersion
85
+
86
+
87
+ ocean_Node_en:
88
+ id: 646366814
89
+ site_id: 1814253598
90
+ node_id: 536268084
91
+ user_id: 1321665606
92
+ created_at: 2006-03-10
93
+ updated_at: 2006-04-11
94
+ lang: en
95
+ publish_from: 2006-03-10
96
+ comment: ""
97
+ summary: ""
98
+ status: 50
99
+ number: 1
100
+ status: 50
101
+ title: Node
102
+ type: TemplateVersion
103
+ text: "<html><body><h1 do='[v_title]'/></body></html>"
104
+
105
+ # ========== test/sites/zena ===========
106
+
107
+ zena_zena_en:
108
+ id: 2093098809
109
+ site_id: 705790409
110
+ node_id: 850927283
111
+ user_id: 1732729804
112
+ created_at: 2006-03-10
113
+ updated_at: 2006-04-11
114
+ lang: en
115
+ publish_from: 2006-03-10
116
+ comment: no comment yet
117
+ status: 50
118
+ number: 1
119
+ status: 50
120
+ title: Zena the wild CMS
121
+ type: Version
122
+ summary: ''
123
+ text: This is the root of your peaceful tests.
124
+
125
+
126
+ zena_people_en:
127
+ id: 2033658357
128
+ site_id: 705790409
129
+ node_id: 74308712
130
+ user_id: 1732729804
131
+ created_at: 2006-03-10
132
+ updated_at: 2006-04-11
133
+ lang: en
134
+ publish_from: 2006-03-10
135
+ comment: no comment yet
136
+ summary: no summary yet
137
+ text: nothing written yet
138
+ status: 50
139
+ number: 1
140
+ status: 50
141
+ title: people
142
+ type: Version
143
+
144
+
145
+
146
+ zena_ant_en:
147
+ id: 1227788235
148
+ site_id: 705790409
149
+ node_id: 1643990091
150
+ user_id: 440568585
151
+ created_at: 2006-03-10
152
+ updated_at: 2006-04-11
153
+ lang: en
154
+ publish_from: 2006-03-10
155
+ comment: no comment yet
156
+ status: 50
157
+ number: 1
158
+ status: 50
159
+ title: Solenopsis Invicta
160
+ type: ContactVersion
161
+ summary: I am an ant
162
+ text: Ants work hard
163
+
164
+
165
+
166
+ zena_myLife_en:
167
+ id: 529580101
168
+ site_id: 705790409
169
+ node_id: 1168819973
170
+ user_id: 440568585
171
+ created_at: 2006-03-10
172
+ updated_at: 2006-04-11
173
+ lang: en
174
+ publish_from: 2006-03-10
175
+ comment: no comment yet
176
+ summary: no summary yet
177
+ text: nothing written yet
178
+ status: 50
179
+ number: 1
180
+ status: 50
181
+ title: My Life
182
+ type: Version
183
+
184
+
185
+
186
+ zena_tiger_en:
187
+ id: 1208195148
188
+ site_id: 705790409
189
+ node_id: 537418472
190
+ user_id: 1732729804
191
+ created_at: 2006-03-10
192
+ updated_at: 2006-04-11
193
+ lang: en
194
+ publish_from: 2006-03-10
195
+ comment: no comment yet
196
+ text: nothing written yet
197
+ status: 50
198
+ number: 1
199
+ status: 50
200
+ title: Tiger
201
+ type: ContactVersion
202
+ summary: "\"panthera tigris on wikipedia\":http://en.wikipedia.org/wiki/Image:Panthera_tigris_sumatran_subspecies.jpg"
203
+
204
+
205
+
206
+ zena_lion_en:
207
+ id: 1779267410
208
+ site_id: 705790409
209
+ node_id: 1198834501
210
+ user_id: 1608342591
211
+ created_at: 2006-03-10
212
+ updated_at: 2006-04-11
213
+ lang: en
214
+ publish_from: 2006-03-10
215
+ comment: no comment yet
216
+ summary: no summary yet
217
+ text: nothing written yet
218
+ status: 50
219
+ number: 1
220
+ status: 50
221
+ title: Lion
222
+ type: ContactVersion
223
+
224
+
225
+
226
+ zena_myDreams_en:
227
+ id: 1197649295
228
+ site_id: 705790409
229
+ node_id: 1463112675
230
+ user_id: 1608342591
231
+ created_at: 2006-03-10
232
+ updated_at: 2006-04-11
233
+ lang: en
234
+ publish_from: 2006-03-10
235
+ comment: no comment yet
236
+ summary: no summary yet
237
+ text: nothing written yet
238
+ status: 50
239
+ number: 1
240
+ status: 50
241
+ title: My Dreams
242
+ type: Version
243
+
244
+
245
+
246
+ zena_projects_en:
247
+ id: 1428340140
248
+ site_id: 705790409
249
+ node_id: 401831715
250
+ user_id: 1732729804
251
+ created_at: 2006-03-10
252
+ updated_at: 2006-04-11
253
+ lang: en
254
+ publish_from: 2006-03-10
255
+ comment: no comment yet
256
+ summary: no summary yet
257
+ status: 50
258
+ number: 1
259
+ status: 50
260
+ title: projects list
261
+ type: Version
262
+ text: |
263
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris facilisis felis in lacus. In sollicitudin turpis nec tellus. Nam ut nibh nec nulla aliquam vehicula. Integer diam tortor, *bibendum non*, eleifend a, auctor nec, dolor. Fusce consequat elit et purus. Vivamus ornare lectus vel ligula. Quisque blandit. Nam ut odio. Sed scelerisque vulputate ipsum. Nam in eros. Sed neque mauris, aliquet sed, convallis ultrices, imperdiet rutrum, odio. Donec eros. In sagittis. Quisque rutrum facilisis mauris. Suspendisse potenti. Suspendisse congue.
264
+
265
+ h1. h1 title
266
+
267
+ Maecenas at est. Morbi sem enim, posuere in, commodo vel, imperdiet non, augue. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus consequat pharetra elit. Pellentesque purus ante, ornare ac, tristique vitae, congue sit amet, pede. Curabitur eu nibh at lorem luctus lacinia. Proin lobortis. Nullam leo. Fusce fermentum facilisis erat. Nam dolor.
268
+
269
+ Fusce erat erat, nonummy non, facilisis ut, tristique quis, risus. Vestibulum libero sem, aliquet id, varius at, pellentesque in, diam. Fusce in diam. Quisque congue eros pellentesque leo. Phasellus tortor odio, cursus sed, ullamcorper sed, luctus et, velit. Etiam consectetuer. In luctus, quam eget dictum euismod, mi dui sollicitudin ante, nec nonummy erat dui nec tellus. Quisque quam. Curabitur in orci. Vivamus eu turpis.
270
+
271
+ !<.31_med!
272
+
273
+ Maecenas at est. Morbi sem enim, posuere in, commodo vel, imperdiet non, augue. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus consequat pharetra elit. Pellentesque purus ante, ornare ac, tristique vitae, congue sit amet, pede. Curabitur eu nibh at lorem luctus lacinia. Proin lobortis. Nullam leo. Fusce fermentum facilisis erat. Nam dolor.
274
+
275
+ p(clear). Fusce erat erat, nonummy non, facilisis ut, tristique quis, risus. Vestibulum libero sem, aliquet id, varius at, pellentesque in, diam. Fusce in diam. Quisque congue eros pellentesque leo. Phasellus tortor odio, cursus sed, ullamcorper sed, luctus et, velit. Etiam consectetuer. In luctus, quam eget dictum euismod, mi dui sollicitudin ante, nec nonummy erat dui nec tellus. Quisque quam. Curabitur in orci. Vivamus eu turpis.
276
+
277
+ h2. h2 title
278
+
279
+ Sed aliquam accumsan sapien. Cras adipiscing euismod orci. Aliquam magna risus, vestibulum eget, interdum ac, hendrerit sit amet, leo. Proin mi diam, rutrum ac, rhoncus adipiscing, sollicitudin rhoncus, elit. Vivamus metus nunc, mollis congue, ullamcorper ac, euismod varius, nunc. Morbi quis velit dapibus sem mattis pharetra. Mauris at augue quis dolor dignissim nonummy. Nam rutrum ante suscipit urna dignissim aliquet. Curabitur ut tortor ac dui nonummy blandit. Nam malesuada enim in nulla. Nunc cursus, orci eu venenatis tincidunt, nunc elit accumsan magna, in cursus erat augue eu erat. Etiam ac neque. Proin tellus nunc, semper ac, consectetuer at, dictum in, nulla.
280
+
281
+ h3. h3 title
282
+
283
+ Nam cursus orci vitae leo fermentum sodales. Morbi eu justo id erat vulputate mattis. Quisque sed leo eu elit faucibus convallis. Quisque laoreet dignissim nisl. Quisque dictum felis a ligula. Nullam consequat. Quisque vulputate sapien quis leo. Mauris ornare massa et ligula. Nulla malesuada. Sed erat. Fusce sit amet urna a enim adipiscing dapibus. Aliquam semper. Proin ac nisi. Mauris in elit non nisi gravida dapibus. Quisque felis metus, eleifend et, pharetra eu, vestibulum ac, urna. Ut pharetra convallis augue. Maecenas augue. Quisque cursus, nunc sed lacinia tincidunt, eros elit luctus ante, eu elementum metus magna dapibus felis. Cras sed elit. Vestibulum aliquam quam sit amet augue.
284
+
285
+ h4. h4 title
286
+
287
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris facilisis felis in lacus. In sollicitudin turpis nec tellus. Nam ut nibh nec nulla aliquam vehicula. Integer diam tortor, bibendum non, eleifend a, auctor nec, dolor. Fusce consequat elit et purus. Vivamus ornare lectus vel ligula. Quisque blandit. Nam ut odio. Sed scelerisque vulputate ipsum. Nam in eros. Sed neque mauris, aliquet sed, convallis ultrices, imperdiet rutrum, odio. Donec eros. In sagittis. Quisque rutrum facilisis mauris. Suspendisse potenti. Suspendisse congue.
288
+
289
+ * this is
290
+ * a simple
291
+ ** list with
292
+ ** sub items
293
+ * like this
294
+
295
+ # this is
296
+ # a simple
297
+ ## list with
298
+ ## sub items
299
+ # like this
300
+
301
+ Maecenas at est. Morbi sem enim, posuere in, commodo vel, imperdiet non, augue. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus consequat pharetra elit. Pellentesque purus ante, ornare ac, tristique vitae, congue sit amet, pede. Curabitur eu nibh at lorem luctus lacinia. Proin lobortis. Nullam leo. Fusce fermentum facilisis erat. Nam dolor.
302
+
303
+ |_. name |_. color |
304
+ | gaspard | blue |
305
+ | zacharie | yellow |
306
+
307
+ Fusce erat erat, nonummy non, facilisis ut, tristique quis, risus. Vestibulum libero sem, aliquet id, varius at, pellentesque in, diam. Fusce in diam. Quisque congue eros pellentesque leo. Phasellus tortor odio, cursus sed, ullamcorper sed, luctus et, velit. Etiam consectetuer. In luctus, quam eget dictum euismod, mi dui sollicitudin ante, nec nonummy erat dui nec tellus. Quisque quam. Curabitur in orci. Vivamus eu turpis.
308
+
309
+ Sed aliquam accumsan sapien. Cras adipiscing euismod orci. Aliquam magna risus, vestibulum eget, interdum ac, hendrerit sit amet, leo. Proin mi diam, rutrum ac, rhoncus adipiscing, sollicitudin rhoncus, elit. Vivamus metus nunc, mollis congue, ullamcorper ac, euismod varius, nunc. Morbi quis velit dapibus sem mattis pharetra. Mauris at augue quis dolor dignissim nonummy. Nam rutrum ante suscipit urna dignissim aliquet. Curabitur ut tortor ac dui nonummy blandit. Nam malesuada enim in nulla. Nunc cursus, orci eu venenatis tincidunt, nunc elit accumsan magna, in cursus erat augue eu erat. Etiam ac neque. Proin tellus nunc, semper ac, consectetuer at, dictum in, nulla.
310
+
311
+ Nam cursus orci vitae leo fermentum sodales. Morbi eu justo id erat vulputate mattis. Quisque sed leo eu elit faucibus convallis. Quisque laoreet dignissim nisl. Quisque dictum felis a ligula. Nullam consequat. Quisque vulputate sapien quis leo. Mauris ornare massa et ligula. Nulla malesuada. Sed erat. Fusce sit amet urna a enim adipiscing dapibus. Aliquam semper. Proin ac nisi. Mauris in elit non nisi gravida dapibus. Quisque felis metus, eleifend et, pharetra eu, vestibulum ac, urna. Ut pharetra convallis augue. Maecenas augue. Quisque cursus, nunc sed lacinia tincidunt, eros elit luctus ante, eu elementum metus magna dapibus felis. Cras sed elit. Vestibulum aliquam quam sit amet augue.
312
+
313
+
314
+
315
+ zena_secret_en:
316
+ id: 795315396
317
+ site_id: 705790409
318
+ node_id: 1893293733
319
+ user_id: 1732729804
320
+ created_at: 2006-03-10
321
+ updated_at: 2006-04-11
322
+ lang: en
323
+ publish_from: 2006-03-10
324
+ comment: no comment yet
325
+ summary: no summary yet
326
+ text: nothing written yet
327
+ status: 50
328
+ number: 1
329
+ status: 50
330
+ title: Secret
331
+ type: Version
332
+
333
+
334
+
335
+ zena_proposition_en:
336
+ id: 863633136
337
+ site_id: 705790409
338
+ node_id: 1079105465
339
+ user_id: 1732729804
340
+ updated_at: 2006-04-11
341
+ lang: en
342
+ publish_from: 2006-03-10
343
+ comment: no comment yet
344
+ summary: no summary yet
345
+ text: nothing written yet
346
+ status: 50
347
+ status: 50
348
+ title: Proposition
349
+ type: Version
350
+ number: 1
351
+ created_at: 2008-08-10
352
+
353
+
354
+ zena_proposition_rep_en:
355
+ id: 235482455
356
+ site_id: 705790409
357
+ node_id: 1079105465
358
+ user_id: 1732729804
359
+ updated_at: 2006-04-11
360
+ lang: en
361
+ publish_from: 2006-03-10
362
+ comment: no comment yet
363
+ summary: no summary yet
364
+ text: nothing written yet
365
+ status: 20
366
+ title: I propose we go to sleep
367
+ type: Version
368
+ number: 2
369
+ created_at: 2009-10-01
370
+
371
+
372
+
373
+ zena_cleanWater_en:
374
+ id: 441974556
375
+ site_id: 705790409
376
+ node_id: 1765350615
377
+ user_id: 1732729804
378
+ created_at: 2006-03-10
379
+ updated_at: 2006-04-11
380
+ lang: en
381
+ publish_from: 2006-03-10
382
+ comment: no comment yet
383
+ summary: no summary yet
384
+ text: nothing written yet
385
+ status: 50
386
+ number: 1
387
+ status: 50
388
+ title: Clean Water project
389
+ type: Version
390
+
391
+
392
+
393
+ zena_status_en:
394
+ id: 596107390
395
+ site_id: 705790409
396
+ node_id: 1467732830
397
+ user_id: 440568585
398
+ created_at: 2006-03-10
399
+ updated_at: 2006-04-11
400
+ lang: en
401
+ publish_from: 2006-03-10
402
+ status: 50
403
+ number: 1
404
+ status: 50
405
+ title: status title
406
+ type: Version
407
+ comment: status comment
408
+ summary: status summary
409
+ text: status text
410
+
411
+
412
+
413
+ zena_lake_en:
414
+ id: 618648829
415
+ site_id: 705790409
416
+ node_id: 987336304
417
+ user_id: 440568585
418
+ created_at: 2006-03-10
419
+ updated_at: 2006-04-11
420
+ lang: en
421
+ publish_from: 2006-03-10
422
+ comment: no comment yet
423
+ status: 50
424
+ number: 1
425
+ status: 50
426
+ title: Tanganyika
427
+ type: ContactVersion
428
+ summary: "More information on \"wikipedia\":http://en.wikipedia.org/wiki/Lake_Tanganyika."
429
+ text: "!014!"
430
+
431
+
432
+ zena_lake_jpg_en:
433
+ id: 947674936
434
+ site_id: 705790409
435
+ node_id: 501297889
436
+ user_id: 440568585
437
+ created_at: 2006-03-10
438
+ updated_at: 2006-04-11
439
+ lang: en
440
+ publish_from: 2006-03-10
441
+ status: 50
442
+ number: 1
443
+ status: 50
444
+ title: it's a lake
445
+ type: ImageVersion
446
+ comment: ""
447
+ summary: "Photo taken from \"wildchimpanzees.org\":http://www.wildchimpanzees.org/press/photo02.php."
448
+ text: ""
449
+
450
+
451
+ zena_water_pdf_en:
452
+ id: 1937858578
453
+ site_id: 705790409
454
+ node_id: 1263114323
455
+ user_id: 1732729804
456
+ created_at: 2006-03-10
457
+ updated_at: 2006-04-11
458
+ lang: en
459
+ publish_from: 2006-03-10
460
+ comment: no comment yet
461
+ status: 50
462
+ number: 1
463
+ status: 50
464
+ title: water
465
+ type: DocumentVersion
466
+ summary: just a stupid pdf
467
+ text: ""
468
+
469
+
470
+ zena_crocodiles_en:
471
+ id: 1640734830
472
+ site_id: 705790409
473
+ node_id: 104821654
474
+ user_id: 440568585
475
+ created_at: 2006-03-10
476
+ updated_at: 2006-04-11
477
+ lang: en
478
+ comment: no comment yet
479
+ summary: no summary yet
480
+ text: nothing written yet
481
+ number: 1
482
+ status: 70
483
+ title: crocodiles
484
+ type: Version
485
+ publish_from:
486
+
487
+
488
+ zena_opening_fr:
489
+ id: 1154708102
490
+ site_id: 705790409
491
+ node_id: 256040563
492
+ user_id: 440568585
493
+ created_at: 2006-03-10
494
+ updated_at: 2006-04-11
495
+ publish_from: 2006-03-10
496
+ summary: no summary yet
497
+ text: nothing written yet
498
+ status: 50
499
+ number: 1
500
+ status: 50
501
+ title: ouverture du parc
502
+ type: Version
503
+ comment: french opening
504
+ lang: fr
505
+
506
+
507
+ zena_bananas_en:
508
+ id: 1589029781
509
+ site_id: 705790409
510
+ node_id: 295801341
511
+ user_id: 1608342591
512
+ lang: en
513
+ comment: no comment yet
514
+ summary: no summary yet
515
+ text: nothing written yet
516
+ status: 50
517
+ number: 1
518
+ status: 50
519
+ title: Nice Bananas
520
+ type: Version
521
+ created_at: 2007-03-10
522
+ updated_at: 2007-04-11
523
+ publish_from: 2007-03-10
524
+
525
+
526
+ zena_wiki_en:
527
+ id: 1736646941
528
+ site_id: 705790409
529
+ node_id: 979649406
530
+ user_id: 1608342591
531
+ created_at: 2006-03-10
532
+ updated_at: 2006-04-11
533
+ lang: en
534
+ publish_from: 2006-03-10
535
+ comment: no comment yet
536
+ summary: no summary yet
537
+ text: nothing written yet
538
+ status: 50
539
+ number: 1
540
+ status: 50
541
+ title: a wiki with zena
542
+ type: Version
543
+
544
+
545
+ zena_bird_jpg_en:
546
+ id: 890552433
547
+ site_id: 705790409
548
+ node_id: 574428247
549
+ user_id: 687379048
550
+ created_at: 2006-03-10
551
+ updated_at: 2006-04-11
552
+ lang: en
553
+ publish_from: 2006-03-10
554
+ status: 50
555
+ number: 1
556
+ status: 50
557
+ title: bird
558
+ type: ImageVersion
559
+ comment: a pretty little bird
560
+ summary: "Photo taken from \"wikimedia\":http://commons.wikimedia.org/wiki/Image:Blue_Tit_aka.jpg."
561
+ text: ""
562
+
563
+
564
+ zena_flower_jpg_en:
565
+ id: 1927484785
566
+ site_id: 705790409
567
+ node_id: 622604559
568
+ user_id: 687379048
569
+ created_at: 2006-03-10
570
+ updated_at: 2006-04-11
571
+ lang: en
572
+ publish_from: 2006-03-10
573
+ status: 50
574
+ number: 1
575
+ status: 50
576
+ title: flower
577
+ type: ImageVersion
578
+ comment: "Photo taken from \"wikimedia\":http://commons.wikimedia.org/wiki/Image:Flor_GDFL_660eue.jpg."
579
+ summary: a pretty little flower
580
+ text: ""
581
+
582
+
583
+ zena_collections_en:
584
+ id: 451734460
585
+ site_id: 705790409
586
+ node_id: 1421461254
587
+ user_id: 1732729804
588
+ created_at: 2006-03-10
589
+ updated_at: 2006-04-11
590
+ lang: en
591
+ publish_from: 2006-03-10
592
+ comment: no comment yet
593
+ summary: no summary yet
594
+ text: nothing written yet
595
+ status: 50
596
+ number: 1
597
+ status: 50
598
+ title: Collections
599
+ type: Version
600
+
601
+
602
+ zena_art_en:
603
+ id: 1816065353
604
+ site_id: 705790409
605
+ node_id: 126488855
606
+ user_id: 1732729804
607
+ created_at: 2006-03-10
608
+ updated_at: 2006-04-11
609
+ lang: en
610
+ publish_from: 2006-03-10
611
+ comment: no comment yet
612
+ summary: no summary yet
613
+ text: nothing written yet
614
+ status: 50
615
+ number: 1
616
+ status: 50
617
+ title: Art
618
+ type: Version
619
+
620
+
621
+ zena_news_en:
622
+ id: 2025059587
623
+ site_id: 705790409
624
+ node_id: 91883052
625
+ user_id: 1732729804
626
+ created_at: 2006-03-10
627
+ updated_at: 2006-04-11
628
+ lang: en
629
+ publish_from: 2006-03-10
630
+ comment: no comment yet
631
+ summary: no summary yet
632
+ text: nothing written yet
633
+ status: 50
634
+ number: 1
635
+ status: 50
636
+ title: News list
637
+ type: Version
638
+
639
+
640
+ zena_menu_en:
641
+ id: 29377969
642
+ site_id: 705790409
643
+ node_id: 1705813481
644
+ user_id: 1732729804
645
+ created_at: 2006-03-10
646
+ updated_at: 2006-04-11
647
+ lang: en
648
+ publish_from: 2006-03-10
649
+ comment: no comment yet
650
+ summary: no summary yet
651
+ text: nothing written yet
652
+ status: 50
653
+ number: 1
654
+ status: 50
655
+ title: Top menu
656
+ type: Version
657
+
658
+
659
+ zena_lake_red_en:
660
+ id: 1833724126
661
+ site_id: 705790409
662
+ node_id: 987336304
663
+ content_id: 618648829
664
+ user_id: 440568585
665
+ created_at: 2006-03-10
666
+ updated_at: 2006-04-11
667
+ lang: en
668
+ summary: no summary yet
669
+ text: nothing written yet
670
+ status: 70
671
+ title: The lake we love
672
+ type: ContactVersion
673
+ comment: this is a new redaction for lake
674
+ publish_from:
675
+ number: 2
676
+
677
+
678
+ zena_opening_en:
679
+ id: 2080341258
680
+ site_id: 705790409
681
+ node_id: 256040563
682
+ user_id: 1732729804
683
+ created_at: 2006-03-10
684
+ updated_at: 2006-04-11
685
+ lang: en
686
+ publish_from: 2006-03-10
687
+ summary: no summary yet
688
+ status: 50
689
+ status: 50
690
+ title: parc opening
691
+ type: Version
692
+ comment: english opening
693
+ text: |
694
+ We are glad to announce the opening of our new project !
695
+
696
+ You are all invited to *Romanel* for a great party this weekend.
697
+ number: 2
698
+
699
+
700
+ zena_opening_red_fr:
701
+ id: 237333418
702
+ site_id: 705790409
703
+ node_id: 256040563
704
+ user_id: 1732729804
705
+ created_at: 2006-03-10
706
+ updated_at: 2006-04-11
707
+ summary: no summary yet
708
+ text: nothing written yet
709
+ status: 70
710
+ title: super ouverture
711
+ type: Version
712
+ comment: new redaction for opening
713
+ publish_from:
714
+ lang: fr
715
+ number: 3
716
+
717
+
718
+ zena_status_fr:
719
+ id: 481030130
720
+ site_id: 705790409
721
+ node_id: 1467732830
722
+ user_id: 440568585
723
+ created_at: 2006-03-10
724
+ updated_at: 2006-04-11
725
+ publish_from: 2006-03-10
726
+ status: 50
727
+ status: 50
728
+ title: Etat des travaux
729
+ type: Version
730
+ comment: status comment
731
+ summary: status summary
732
+ text: status text
733
+ lang: fr
734
+ number: 2
735
+
736
+
737
+ zena_track_en:
738
+ id: 1506959064
739
+ site_id: 705790409
740
+ node_id: 296548749
741
+ user_id: 1732729804
742
+ created_at: 2006-03-10
743
+ updated_at: 2006-04-11
744
+ lang: en
745
+ publish_from: 2006-03-10
746
+ text: nothing written yet
747
+ status: 50
748
+ number: 1
749
+ status: 50
750
+ title: Keeping things clean !
751
+ type: Version
752
+ comment: small presentation
753
+ summary: This page is a *Tracker*. It stores open Bugs, tasks and actions.
754
+
755
+
756
+ zena_strange_en_red:
757
+ id: 1153218855
758
+ site_id: 705790409
759
+ node_id: 76414460
760
+ user_id: 1608342591
761
+ created_at: 2006-03-10
762
+ updated_at: 2006-04-11
763
+ lang: en
764
+ publish_from: 2006-03-10
765
+ status: 70
766
+ title: Stranger in the night
767
+ type: Version
768
+ comment: strange configuration. Proposed
769
+ summary: ""
770
+ text: ""
771
+ number: 2
772
+
773
+
774
+ zena_talk_en:
775
+ id: 571583863
776
+ site_id: 705790409
777
+ node_id: 126700224
778
+ user_id: 1732729804
779
+ created_at: 2006-03-10
780
+ updated_at: 2006-04-11
781
+ lang: en
782
+ publish_from: 2006-03-10
783
+ status: 50
784
+ number: 1
785
+ status: 50
786
+ title: Talk
787
+ type: Version
788
+ comment: Please read all this.
789
+ summary: Talks for 'workers' in the secret project.
790
+ text: You can talk here.
791
+
792
+
793
+ zena_nature_red_en:
794
+ id: 1417835553
795
+ site_id: 705790409
796
+ node_id: 497235174
797
+ user_id: 440568585
798
+ created_at: 2006-03-10
799
+ updated_at: 2006-04-11
800
+ lang: en
801
+ status: 70
802
+ title: Nature
803
+ type: Version
804
+ comment: Beauty of nature
805
+ summary: "Ant's redaction on Nature"
806
+ text: "![]!"
807
+ publish_from:
808
+ number: 1
809
+
810
+
811
+ zena_tree_jpg_en:
812
+ id: 672308161
813
+ site_id: 705790409
814
+ node_id: 1585708893
815
+ user_id: 440568585
816
+ created_at: 2006-03-10
817
+ updated_at: 2006-04-11
818
+ lang: en
819
+ status: 70
820
+ title: Autumn Tree
821
+ type: ImageVersion
822
+ comment: a tree
823
+ summary: "photography © André Karwath 2004"
824
+ text: ""
825
+ publish_from:
826
+ number: 1
827
+
828
+
829
+ zena_forest_pdf_en:
830
+ id: 1432377919
831
+ site_id: 705790409
832
+ node_id: 431583638
833
+ user_id: 440568585
834
+ created_at: 2006-03-10
835
+ updated_at: 2006-04-11
836
+ lang: en
837
+ status: 70
838
+ title: Forest
839
+ type: DocumentVersion
840
+ comment: a forest
841
+ summary: ""
842
+ text: ""
843
+ publish_from:
844
+ number: 1
845
+
846
+
847
+ zena_letter_en:
848
+ id: 223682533
849
+ site_id: 705790409
850
+ node_id: 578377803
851
+ user_id: 1732729804
852
+ created_at: 2006-03-10
853
+ updated_at: 2006-04-11
854
+ lang: en
855
+ publish_from: 2006-03-10
856
+ status: 50
857
+ number: 1
858
+ status: 50
859
+ title: zena enhancements
860
+ type: Version
861
+ comment: letter for testing
862
+ summary: This page is a *Letter*.
863
+ text: letter content
864
+
865
+
866
+ zena_wiki_skin_en:
867
+ id: 1200132684
868
+ site_id: 705790409
869
+ node_id: 105639527
870
+ user_id: 1732729804
871
+ created_at: 2006-03-10
872
+ updated_at: 2006-04-11
873
+ lang: en
874
+ publish_from: 2006-03-10
875
+ status: 50
876
+ number: 1
877
+ status: 50
878
+ title: wiki skin
879
+ type: Version
880
+ comment: very simple skin for wiki
881
+ summary: Very simple skin.
882
+ text: lorem ipsum blah dolor.
883
+
884
+
885
+
886
+ zena_wiki_project_changes_xml_en:
887
+ id: 739891734
888
+ site_id: 705790409
889
+ node_id: 2119357477
890
+ user_id: 1732729804
891
+ created_at: 2006-03-10
892
+ updated_at: 2006-04-11
893
+ lang: en
894
+ publish_from: 2006-03-10
895
+ status: 50
896
+ number: 1
897
+ status: 50
898
+ title: Project-changes-xml
899
+ type: TemplateVersion
900
+ comment: layout for wiki
901
+ summary: Layout for the wiki skin.
902
+ text: |
903
+ <?xml version="1.0" encoding="UTF-8"?>
904
+ <name><r:show attr='name'/></name>
905
+ <changes do='nodes' in='project' order='updated_at DESC' limit='10'>
906
+ <node do='each'>
907
+ <type><r:show attr='type'/></type>
908
+ <name><r:show attr='name'/></name>
909
+ <id><r:show attr='id'/></id>
910
+ </note>
911
+ </notes>
912
+
913
+
914
+
915
+ zena_wiki_page_changes_en:
916
+ id: 1649183139
917
+ site_id: 705790409
918
+ node_id: 1859837825
919
+ user_id: 1732729804
920
+ created_at: 2006-03-10
921
+ updated_at: 2006-04-11
922
+ lang: en
923
+ publish_from: 2006-03-10
924
+ status: 50
925
+ number: 1
926
+ status: 50
927
+ title: Page-changes
928
+ type: TemplateVersion
929
+ comment: layout for wiki
930
+ summary: Layout for the wiki skin.
931
+ text: |
932
+ <r:include template='layout.html'>
933
+ <r:with part='body/content/main'>
934
+ page changes
935
+ </r:with>
936
+ </r:include>
937
+
938
+
939
+ zena_anonymous_en:
940
+ id: 1947613685
941
+ site_id: 705790409
942
+ node_id: 1176611712
943
+ user_id: 1732729804
944
+ created_at: 2006-03-10
945
+ updated_at: 2006-04-11
946
+ lang: en
947
+ publish_from: 2006-03-10
948
+ status: 50
949
+ number: 1
950
+ status: 50
951
+ title: Mr nobody
952
+ type: ContactVersion
953
+ comment: The Invisible Man
954
+ summary: ""
955
+ text: ""
956
+
957
+
958
+ zena_wiki_node_en:
959
+ id: 1971416805
960
+ site_id: 705790409
961
+ node_id: 1138644492
962
+ user_id: 1732729804
963
+ created_at: 2006-03-10
964
+ updated_at: 2006-04-11
965
+ lang: en
966
+ publish_from: 2006-03-10
967
+ status: 50
968
+ number: 1
969
+ status: 50
970
+ title: main template
971
+ type: TemplateVersion
972
+ comment: master template for wiki
973
+ summary: master template for wiki skin.
974
+ text: |
975
+ <r:include template='/default/Node'>
976
+ <r:with part='main'>
977
+ WIKI
978
+ </r:with>
979
+ </r:include>
980
+
981
+
982
+ zena_skins_en:
983
+ id: 541046656
984
+ site_id: 705790409
985
+ node_id: 642550315
986
+ user_id: 1732729804
987
+ created_at: 2006-03-10
988
+ updated_at: 2006-04-11
989
+ lang: en
990
+ publish_from: 2006-03-10
991
+ status: 50
992
+ number: 1
993
+ status: 50
994
+ title: Skins (layout themes)
995
+ type: Version
996
+ comment: ""
997
+ summary: List of skins used by this website
998
+ text: This page contains the skins used by this website.
999
+
1000
+
1001
+ zena_default_en:
1002
+ id: 1375182652
1003
+ site_id: 705790409
1004
+ node_id: 1646856816
1005
+ user_id: 1732729804
1006
+ created_at: 2006-03-10
1007
+ updated_at: 2006-04-11
1008
+ lang: en
1009
+ publish_from: 2006-03-10
1010
+ status: 50
1011
+ number: 1
1012
+ status: 50
1013
+ title: Default skin
1014
+ type: Version
1015
+ comment: "version 0.8"
1016
+ summary: official default skin
1017
+ text: |
1018
+ This is the default skin for zena. You should be *very careful* if you change this skin: it is used to display/edit itself.
1019
+
1020
+ When creating your own skins, you should *always avoid* to display your skins with themselves. This is tempting but will put you in trouble if you need to edit a broken template.
1021
+
1022
+ By the way, have a look at the designer documentation for "zafu":http://zenadmin.org/en/documentation/page44.html for ideas on how to create a new skin with very few lines of zafu (using clever include tricks).
1023
+
1024
+
1025
+ zena_Node_search_zafu_en:
1026
+ id: 1271374111
1027
+ site_id: 705790409
1028
+ node_id: 1208112073
1029
+ user_id: 1732729804
1030
+ created_at: 2006-03-10
1031
+ updated_at: 2006-04-11
1032
+ lang: en
1033
+ publish_from: 2006-03-10
1034
+ comment: no comment yet
1035
+ summary: no summary yet
1036
+ status: 50
1037
+ number: 1
1038
+ status: 50
1039
+ title: Node-search
1040
+ type: TemplateVersion
1041
+ text: |
1042
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Node-+search.zafu") do |l| %> <%= l %><% end %>
1043
+
1044
+
1045
+ zena_style_css_en:
1046
+ id: 809544244
1047
+ site_id: 705790409
1048
+ node_id: 1087959263
1049
+ user_id: 1732729804
1050
+ created_at: 2006-03-10
1051
+ updated_at: 2006-04-11
1052
+ lang: en
1053
+ publish_from: 2006-03-10
1054
+ comment: no comment yet
1055
+ summary: no summary yet
1056
+ status: 50
1057
+ number: 1
1058
+ status: 50
1059
+ title: style
1060
+ type: TextDocumentVersion
1061
+ text: |
1062
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/style.css") do |l| %> <%= l %><% end %>
1063
+
1064
+
1065
+ zena_Node_zafu_en:
1066
+ id: 13229561
1067
+ site_id: 705790409
1068
+ node_id: 1046363781
1069
+ user_id: 1732729804
1070
+ created_at: 2006-03-10
1071
+ updated_at: 2006-04-11
1072
+ lang: en
1073
+ publish_from: 2006-03-10
1074
+ comment: no comment yet
1075
+ summary: no summary yet
1076
+ status: 50
1077
+ number: 1
1078
+ status: 50
1079
+ title: Node
1080
+ type: TemplateVersion
1081
+ text: |
1082
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Node.zafu") do |l| %> <%= l %><% end %>
1083
+
1084
+
1085
+ zena_Node_admin_layout_zafu_en:
1086
+ id: 6167670
1087
+ site_id: 705790409
1088
+ node_id: 416273788
1089
+ user_id: 1732729804
1090
+ created_at: 2006-03-10
1091
+ updated_at: 2006-04-11
1092
+ lang: en
1093
+ publish_from: 2006-03-10
1094
+ comment: no comment yet
1095
+ summary: no summary yet
1096
+ status: 50
1097
+ number: 1
1098
+ status: 50
1099
+ title: Node-+adminLayout
1100
+ type: TemplateVersion
1101
+ text: |
1102
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Node-+adminLayout.zafu") do |l| %> <%= l %><% end %>
1103
+
1104
+
1105
+ zena_Node_index_zafu_en:
1106
+ id: 1085485781
1107
+ site_id: 705790409
1108
+ node_id: 1363116903
1109
+ user_id: 1732729804
1110
+ created_at: 2006-03-10
1111
+ updated_at: 2006-04-11
1112
+ lang: en
1113
+ publish_from: 2006-03-10
1114
+ comment: no comment yet
1115
+ summary: no summary yet
1116
+ status: 50
1117
+ number: 1
1118
+ status: 50
1119
+ title: Node-+index
1120
+ type: TemplateVersion
1121
+ text: |
1122
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Node-+index.zafu") do |l| %> <%= l %><% end %>
1123
+
1124
+
1125
+ zena_Node_not_found_zafu_en:
1126
+ id: 167150355
1127
+ site_id: 705790409
1128
+ node_id: 724482651
1129
+ user_id: 1732729804
1130
+ created_at: 2006-03-10
1131
+ updated_at: 2006-04-11
1132
+ lang: en
1133
+ publish_from: 2006-03-10
1134
+ comment: no comment yet
1135
+ summary: no summary yet
1136
+ status: 50
1137
+ number: 1
1138
+ status: 50
1139
+ title: Node-+notFound
1140
+ type: TemplateVersion
1141
+ text: |
1142
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Node-+notFound.zafu") do |l| %> <%= l %><% end %>
1143
+
1144
+
1145
+ zena_Node_popup_layout_zafu_en:
1146
+ id: 921484752
1147
+ site_id: 705790409
1148
+ node_id: 1747535511
1149
+ user_id: 1732729804
1150
+ created_at: 2006-03-10
1151
+ updated_at: 2006-04-11
1152
+ lang: en
1153
+ publish_from: 2006-03-10
1154
+ comment: no comment yet
1155
+ summary: no summary yet
1156
+ status: 50
1157
+ number: 1
1158
+ status: 50
1159
+ title: Node-+popupLayout
1160
+ type: TemplateVersion
1161
+ text: |
1162
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Node-+popupLayout.zafu") do |l| %> <%= l %><% end %>
1163
+
1164
+
1165
+ zena_Node_test_en:
1166
+ id: 1541118758
1167
+ site_id: 705790409
1168
+ node_id: 1578703466
1169
+ user_id: 1732729804
1170
+ created_at: 2006-03-10
1171
+ updated_at: 2006-04-11
1172
+ lang: en
1173
+ publish_from: 2006-03-10
1174
+ comment: no comment yet
1175
+ summary: no summary yet
1176
+ status: 50
1177
+ number: 1
1178
+ status: 50
1179
+ title: Node-test
1180
+ type: TemplateVersion
1181
+ text: |
1182
+ <% File.foreach("#{Zena::ROOT}/test/fixtures/files/Node-test.zafu") do |l| %> <%= l %><% end %>
1183
+
1184
+
1185
+ zena_notes_zafu_en:
1186
+ id: 782848261
1187
+ site_id: 705790409
1188
+ node_id: 1183880165
1189
+ user_id: 1732729804
1190
+ created_at: 2006-03-10
1191
+ updated_at: 2006-04-11
1192
+ lang: en
1193
+ publish_from: 2006-03-10
1194
+ comment: no comment yet
1195
+ summary: no summary yet
1196
+ status: 50
1197
+ number: 1
1198
+ status: 50
1199
+ title: notes
1200
+ type: TemplateVersion
1201
+ text: |
1202
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/notes.zafu") do |l| %> <%= l %><% end %>
1203
+
1204
+
1205
+ zena_Project_zafu_en:
1206
+ id: 1312115533
1207
+ site_id: 705790409
1208
+ node_id: 1768211301
1209
+ user_id: 1732729804
1210
+ created_at: 2006-03-10
1211
+ updated_at: 2006-04-11
1212
+ lang: en
1213
+ publish_from: 2006-03-10
1214
+ comment: no comment yet
1215
+ summary: no summary yet
1216
+ status: 50
1217
+ number: 1
1218
+ status: 50
1219
+ title: Project
1220
+ type: TemplateVersion
1221
+ text: |
1222
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Project.zafu") do |l| %> <%= l %><% end %>
1223
+
1224
+
1225
+ zena_Node_login_zafu_en:
1226
+ id: 440234204
1227
+ site_id: 705790409
1228
+ node_id: 1020121201
1229
+ user_id: 1732729804
1230
+ created_at: 2006-03-10
1231
+ updated_at: 2006-04-11
1232
+ lang: en
1233
+ publish_from: 2006-03-10
1234
+ comment: no comment yet
1235
+ summary: no summary yet
1236
+ status: 50
1237
+ number: 1
1238
+ status: 50
1239
+ title: Node-+login
1240
+ type: TemplateVersion
1241
+ text: |
1242
+ <% File.foreach("#{Zena::ROOT}/db/init/base/skins/default/Node-+login.zafu") do |l| %> <%= l %><% end %>
1243
+
1244
+
1245
+ zena_translations_de:
1246
+ id: 931205298
1247
+ site_id: 705790409
1248
+ node_id: 1902673252
1249
+ user_id: 1732729804
1250
+ created_at: 2006-03-10
1251
+ updated_at: 2006-04-11
1252
+ publish_from: 2006-03-10
1253
+ comment: no comment yet
1254
+ summary: no summary yet
1255
+ status: 50
1256
+ number: 1
1257
+ status: 50
1258
+ title: translations
1259
+ type: TextDocumentVersion
1260
+ lang: de
1261
+ text: |
1262
+ <% File.foreach("#{Zena::ROOT}/test/fixtures/files/translations_de.yml") do |l| %> <%= l %><% end %>
1263
+
1264
+
1265
+ zena_translations_fr:
1266
+ id: 107280376
1267
+ site_id: 705790409
1268
+ node_id: 1902673252
1269
+ user_id: 1732729804
1270
+ created_at: 2006-03-10
1271
+ updated_at: 2006-04-11
1272
+ publish_from: 2006-03-10
1273
+ comment: no comment yet
1274
+ summary: no summary yet
1275
+ status: 50
1276
+ number: 1
1277
+ status: 50
1278
+ title: translations
1279
+ type: TextDocumentVersion
1280
+ lang: fr
1281
+ text: |
1282
+ <% File.foreach("#{Zena::ROOT}/test/fixtures/files/translations_fr.yml") do |l| %> <%= l %><% end %>
1283
+
1284
+ # ========== complex (generated from 'nodes.yml') ===========
1285
+
1286
+
1287
+ complex_vision2003:
1288
+ comment: ""
1289
+ number: 1
1290
+ title: vision 2003
1291
+ text: ""
1292
+ node_id: 1670097390
1293
+ id: 870239344
1294
+ type: Version
1295
+ user_id: 135138679
1296
+ publish_from: 2003-02-01
1297
+ lang: fr
1298
+ summary: ""
1299
+ status: pub
1300
+ site_id: 1402237762
1301
+
1302
+ complex_form2005:
1303
+ comment: ""
1304
+ number: 1
1305
+ title: formprobs 2005
1306
+ text: ""
1307
+ node_id: 343378685
1308
+ id: 652112593
1309
+ type: Version
1310
+ user_id: 135138679
1311
+ publish_from: 2003-02-01
1312
+ lang: fr
1313
+ summary: ""
1314
+ status: pub
1315
+ site_id: 1402237762
1316
+
1317
+ complex_fiber_junction:
1318
+ comment: ""
1319
+ number: 1
1320
+ title: fiber junction
1321
+ text: ""
1322
+ node_id: 685623258
1323
+ id: 1804373338
1324
+ type: Version
1325
+ user_id: 135138679
1326
+ publish_from: 2003-02-01
1327
+ lang: fr
1328
+ summary: ""
1329
+ status: pub
1330
+ site_id: 1402237762
1331
+
1332
+ complex_dangerous_transportations:
1333
+ comment: ""
1334
+ number: 1
1335
+ title: dangerous transportations
1336
+ text: ""
1337
+ node_id: 1501144151
1338
+ id: 525132984
1339
+ type: Version
1340
+ user_id: 135138679
1341
+ publish_from: 2003-02-01
1342
+ lang: fr
1343
+ summary: ""
1344
+ status: pub
1345
+ site_id: 1402237762
1346
+
1347
+ complex_driver_team:
1348
+ comment: ""
1349
+ number: 1
1350
+ title: team work
1351
+ text: ""
1352
+ node_id: 1413179510
1353
+ id: 1499361427
1354
+ type: Version
1355
+ user_id: 135138679
1356
+ publish_from: 2003-02-01
1357
+ lang: fr
1358
+ summary: ""
1359
+ status: pub
1360
+ site_id: 1402237762
1361
+
1362
+ complex_mike:
1363
+ comment: ""
1364
+ number: 1
1365
+ title: Mike Mean
1366
+ text: ""
1367
+ node_id: 99397558
1368
+ id: 1425924220
1369
+ type: ContactVersion
1370
+ user_id: 135138679
1371
+ publish_from: 2003-02-01
1372
+ lang: fr
1373
+ summary: ""
1374
+ status: pub
1375
+ site_id: 1402237762
1376
+
1377
+ complex_joe:
1378
+ comment: ""
1379
+ number: 1
1380
+ title: Joe Friendly
1381
+ text: ""
1382
+ node_id: 1463765376
1383
+ id: 1675996680
1384
+ type: ContactVersion
1385
+ user_id: 135138679
1386
+ publish_from: 2003-02-01
1387
+ lang: fr
1388
+ summary: ""
1389
+ status: pub
1390
+ site_id: 1402237762
1391
+
1392
+ complex_form2006:
1393
+ comment: ""
1394
+ number: 1
1395
+ title: formprobs 2006
1396
+ text: ""
1397
+ node_id: 226417478
1398
+ id: 879484223
1399
+ type: Version
1400
+ user_id: 135138679
1401
+ publish_from: 2003-02-01
1402
+ lang: fr
1403
+ summary: ""
1404
+ status: pub
1405
+ site_id: 1402237762
1406
+
1407
+ complex_fiber2002:
1408
+ comment: ""
1409
+ number: 1
1410
+ title: fiber 2002
1411
+ text: ""
1412
+ node_id: 1814365203
1413
+ id: 604332200
1414
+ type: Version
1415
+ user_id: 135138679
1416
+ publish_from: 2003-02-01
1417
+ lang: fr
1418
+ summary: ""
1419
+ status: pub
1420
+ site_id: 1402237762
1421
+
1422
+ complex_transp2006:
1423
+ comment: ""
1424
+ number: 1
1425
+ title: dtransp 2006
1426
+ text: ""
1427
+ node_id: 1769779755
1428
+ id: 777336044
1429
+ type: Version
1430
+ user_id: 135138679
1431
+ publish_from: 2003-02-01
1432
+ lang: fr
1433
+ summary: ""
1434
+ status: pub
1435
+ site_id: 1402237762
1436
+
1437
+ complex_chief_image:
1438
+ comment: ""
1439
+ number: 1
1440
+ title: corporate image
1441
+ text: ""
1442
+ node_id: 1771734066
1443
+ id: 2111273516
1444
+ type: Version
1445
+ user_id: 135138679
1446
+ publish_from: 2003-02-01
1447
+ lang: fr
1448
+ summary: ""
1449
+ status: pub
1450
+ site_id: 1402237762
1451
+
1452
+ complex_Node_zafu:
1453
+ comment: ""
1454
+ number: 1
1455
+ title: Node
1456
+ text: ""
1457
+ node_id: 2120608021
1458
+ id: 1011268239
1459
+ type: TemplateVersion
1460
+ user_id: 135138679
1461
+ publish_from: 2003-02-01
1462
+ lang: fr
1463
+ summary: ""
1464
+ status: pub
1465
+ site_id: 1402237762
1466
+
1467
+ complex_fiber2003:
1468
+ comment: ""
1469
+ number: 1
1470
+ title: fiber 2003
1471
+ text: ""
1472
+ node_id: 455226501
1473
+ id: 481888206
1474
+ type: Version
1475
+ user_id: 135138679
1476
+ publish_from: 2003-02-01
1477
+ lang: fr
1478
+ summary: ""
1479
+ status: pub
1480
+ site_id: 1402237762
1481
+
1482
+ complex_jobs:
1483
+ comment: ""
1484
+ number: 1
1485
+ title: jobs
1486
+ text: ""
1487
+ node_id: 966845862
1488
+ id: 1063344093
1489
+ type: Version
1490
+ user_id: 135138679
1491
+ publish_from: 2003-02-01
1492
+ lang: fr
1493
+ summary: ""
1494
+ status: pub
1495
+ site_id: 1402237762
1496
+
1497
+ complex_cskin:
1498
+ comment: ""
1499
+ number: 1
1500
+ title: cskin
1501
+ text: ""
1502
+ node_id: 1982734162
1503
+ id: 1807324503
1504
+ type: Version
1505
+ user_id: 135138679
1506
+ publish_from: 2003-02-01
1507
+ lang: fr
1508
+ summary: ""
1509
+ status: pub
1510
+ site_id: 1402237762
1511
+
1512
+ complex_driver_security:
1513
+ comment: ""
1514
+ number: 1
1515
+ title: security
1516
+ text: ""
1517
+ node_id: 172448147
1518
+ id: 1750807188
1519
+ type: Version
1520
+ user_id: 135138679
1521
+ publish_from: 2003-02-01
1522
+ lang: fr
1523
+ summary: ""
1524
+ status: pub
1525
+ site_id: 1402237762
1526
+
1527
+ complex_roger:
1528
+ comment: ""
1529
+ number: 1
1530
+ title: Roger Ubercool
1531
+ text: ""
1532
+ node_id: 13607777
1533
+ id: 1395365638
1534
+ type: ContactVersion
1535
+ user_id: 135138679
1536
+ publish_from: 2003-02-01
1537
+ lang: fr
1538
+ summary: ""
1539
+ status: pub
1540
+ site_id: 1402237762
1541
+
1542
+ complex_transm2001:
1543
+ comment: ""
1544
+ number: 1
1545
+ title: transinfo 2001
1546
+ text: ""
1547
+ node_id: 1869116603
1548
+ id: 1413228713
1549
+ type: Version
1550
+ user_id: 135138679
1551
+ publish_from: 2003-02-01
1552
+ lang: fr
1553
+ summary: ""
1554
+ status: pub
1555
+ site_id: 1402237762
1556
+
1557
+ complex_secure_a_site:
1558
+ comment: ""
1559
+ number: 1
1560
+ title: secure a site
1561
+ text: ""
1562
+ node_id: 1316883648
1563
+ id: 531294616
1564
+ type: Version
1565
+ user_id: 135138679
1566
+ publish_from: 2003-02-01
1567
+ lang: fr
1568
+ summary: ""
1569
+ status: pub
1570
+ site_id: 1402237762
1571
+
1572
+ complex_courses:
1573
+ comment: ""
1574
+ number: 1
1575
+ title: courses list
1576
+ text: ""
1577
+ node_id: 771285545
1578
+ id: 2088603676
1579
+ type: Version
1580
+ user_id: 135138679
1581
+ publish_from: 2003-02-01
1582
+ lang: fr
1583
+ summary: ""
1584
+ status: pub
1585
+ site_id: 1402237762
1586
+
1587
+ complex_technician_team:
1588
+ comment: ""
1589
+ number: 1
1590
+ title: team work
1591
+ text: ""
1592
+ node_id: 159612786
1593
+ id: 510551867
1594
+ type: Version
1595
+ user_id: 135138679
1596
+ publish_from: 2003-02-01
1597
+ lang: fr
1598
+ summary: ""
1599
+ status: pub
1600
+ site_id: 1402237762
1601
+
1602
+ complex_transm2002:
1603
+ comment: ""
1604
+ number: 1
1605
+ title: transinfo 2002
1606
+ text: ""
1607
+ node_id: 1986077954
1608
+ id: 1183418183
1609
+ type: Version
1610
+ user_id: 135138679
1611
+ publish_from: 2003-02-01
1612
+ lang: fr
1613
+ summary: ""
1614
+ status: pub
1615
+ site_id: 1402237762
1616
+
1617
+ complex_winch_usage:
1618
+ comment: ""
1619
+ number: 1
1620
+ title: how to use the winch
1621
+ text: ""
1622
+ node_id: 2140151161
1623
+ id: 1095680086
1624
+ type: Version
1625
+ user_id: 135138679
1626
+ publish_from: 2003-02-01
1627
+ lang: fr
1628
+ summary: ""
1629
+ status: pub
1630
+ site_id: 1402237762
1631
+
1632
+ complex_transm2003:
1633
+ comment: ""
1634
+ number: 1
1635
+ title: transinfo 2003
1636
+ text: ""
1637
+ node_id: 23467416
1638
+ id: 2117460003
1639
+ type: Version
1640
+ user_id: 135138679
1641
+ publish_from: 2003-02-01
1642
+ lang: fr
1643
+ summary: ""
1644
+ status: pub
1645
+ site_id: 1402237762
1646
+
1647
+ complex_team_motivation:
1648
+ comment: ""
1649
+ number: 1
1650
+ title: motivate your team
1651
+ text: ""
1652
+ node_id: 1544688456
1653
+ id: 1921959918
1654
+ type: Version
1655
+ user_id: 135138679
1656
+ publish_from: 2003-02-01
1657
+ lang: fr
1658
+ summary: ""
1659
+ status: pub
1660
+ site_id: 1402237762
1661
+
1662
+ complex_engine:
1663
+ comment: ""
1664
+ number: 1
1665
+ title: engine maintenance
1666
+ text: ""
1667
+ node_id: 1849060107
1668
+ id: 1357620436
1669
+ type: Version
1670
+ user_id: 135138679
1671
+ publish_from: 2003-02-01
1672
+ lang: fr
1673
+ summary: ""
1674
+ status: pub
1675
+ site_id: 1402237762
1676
+
1677
+ complex_formulate_problems:
1678
+ comment: ""
1679
+ number: 1
1680
+ title: problem formulation
1681
+ text: ""
1682
+ node_id: 1370405727
1683
+ id: 1165006425
1684
+ type: Version
1685
+ user_id: 135138679
1686
+ publish_from: 2003-02-01
1687
+ lang: fr
1688
+ summary: ""
1689
+ status: pub
1690
+ site_id: 1402237762
1691
+
1692
+ complex_technician:
1693
+ comment: ""
1694
+ number: 1
1695
+ title: technician
1696
+ text: ""
1697
+ node_id: 73171786
1698
+ id: 406129714
1699
+ type: Version
1700
+ user_id: 135138679
1701
+ publish_from: 2003-02-01
1702
+ lang: fr
1703
+ summary: ""
1704
+ status: pub
1705
+ site_id: 1402237762
1706
+
1707
+ complex_transmit_information:
1708
+ comment: ""
1709
+ number: 1
1710
+ title: information transmission
1711
+ text: ""
1712
+ node_id: 586729701
1713
+ id: 195244824
1714
+ type: Version
1715
+ user_id: 135138679
1716
+ publish_from: 2003-02-01
1717
+ lang: fr
1718
+ summary: ""
1719
+ status: pub
1720
+ site_id: 1402237762
1721
+
1722
+ complex_chief_motivation:
1723
+ comment: ""
1724
+ number: 1
1725
+ title: team motivation
1726
+ text: ""
1727
+ node_id: 840879659
1728
+ id: 262236298
1729
+ type: Version
1730
+ user_id: 135138679
1731
+ publish_from: 2003-02-01
1732
+ lang: fr
1733
+ summary: ""
1734
+ status: pub
1735
+ site_id: 1402237762
1736
+
1737
+ complex_chief:
1738
+ comment: ""
1739
+ number: 1
1740
+ title: chief
1741
+ text: ""
1742
+ node_id: 1356651676
1743
+ id: 1139554694
1744
+ type: Version
1745
+ user_id: 135138679
1746
+ publish_from: 2003-02-01
1747
+ lang: fr
1748
+ summary: ""
1749
+ status: pub
1750
+ site_id: 1402237762
1751
+
1752
+ complex_technician_security:
1753
+ comment: ""
1754
+ number: 1
1755
+ title: security
1756
+ text: ""
1757
+ node_id: 629830345
1758
+ id: 454537231
1759
+ type: Version
1760
+ user_id: 135138679
1761
+ publish_from: 2003-02-01
1762
+ lang: fr
1763
+ summary: ""
1764
+ status: pub
1765
+ site_id: 1402237762
1766
+
1767
+ complex_employees:
1768
+ comment: ""
1769
+ number: 1
1770
+ title: list of employees
1771
+ text: ""
1772
+ node_id: 2125025856
1773
+ id: 1108395402
1774
+ type: Version
1775
+ user_id: 135138679
1776
+ publish_from: 2003-02-01
1777
+ lang: fr
1778
+ summary: ""
1779
+ status: pub
1780
+ site_id: 1402237762
1781
+
1782
+ complex_vision:
1783
+ comment: ""
1784
+ number: 1
1785
+ title: our vision
1786
+ text: ""
1787
+ node_id: 149352239
1788
+ id: 915653910
1789
+ type: Version
1790
+ user_id: 135138679
1791
+ publish_from: 2003-02-01
1792
+ lang: fr
1793
+ summary: ""
1794
+ status: pub
1795
+ site_id: 1402237762
1796
+
1797
+ complex_technician_fiber:
1798
+ comment: ""
1799
+ number: 1
1800
+ title: optical fiber
1801
+ text: ""
1802
+ node_id: 1214391289
1803
+ id: 839734189
1804
+ type: Version
1805
+ user_id: 135138679
1806
+ publish_from: 2003-02-01
1807
+ lang: fr
1808
+ summary: ""
1809
+ status: pub
1810
+ site_id: 1402237762
1811
+
1812
+ complex_driver_mechanical:
1813
+ comment: ""
1814
+ number: 1
1815
+ title: mechanical
1816
+ text: ""
1817
+ node_id: 322283378
1818
+ id: 2009825368
1819
+ type: Version
1820
+ user_id: 135138679
1821
+ publish_from: 2003-02-01
1822
+ lang: fr
1823
+ summary: ""
1824
+ status: pub
1825
+ site_id: 1402237762
1826
+
1827
+ complex_driver:
1828
+ comment: ""
1829
+ number: 1
1830
+ title: driver
1831
+ text: ""
1832
+ node_id: 402132320
1833
+ id: 1948582359
1834
+ type: Version
1835
+ user_id: 135138679
1836
+ publish_from: 2003-02-01
1837
+ lang: fr
1838
+ summary: ""
1839
+ status: pub
1840
+ site_id: 1402237762
1841
+
1842
+ complex_resp_management:
1843
+ comment: ""
1844
+ number: 1
1845
+ title: responsabilities management
1846
+ text: ""
1847
+ node_id: 1395318420
1848
+ id: 722951574
1849
+ type: Version
1850
+ user_id: 135138679
1851
+ publish_from: 2003-02-01
1852
+ lang: fr
1853
+ summary: ""
1854
+ status: pub
1855
+ site_id: 1402237762
1856
+
1857
+ complex_radio_usage:
1858
+ comment: ""
1859
+ number: 1
1860
+ title: how to use the radio
1861
+ text: ""
1862
+ node_id: 1549359384
1863
+ id: 1974130378
1864
+ type: Version
1865
+ user_id: 135138679
1866
+ publish_from: 2003-02-01
1867
+ lang: fr
1868
+ summary: ""
1869
+ status: pub
1870
+ site_id: 1402237762
1871
+
1872
+ complex_complex:
1873
+ comment: ""
1874
+ number: 1
1875
+ title: complex site
1876
+ text: ""
1877
+ node_id: 1472842534
1878
+ id: 1631427812
1879
+ type: Version
1880
+ user_id: 135138679
1881
+ publish_from: 2003-02-01
1882
+ lang: fr
1883
+ summary: ""
1884
+ status: pub
1885
+ site_id: 1402237762
1886
+
1887
+ complex_transp2004:
1888
+ comment: ""
1889
+ number: 1
1890
+ title: dtransp 2004
1891
+ text: ""
1892
+ node_id: 124965640
1893
+ id: 73202784
1894
+ type: Version
1895
+ user_id: 135138679
1896
+ publish_from: 2003-02-01
1897
+ lang: fr
1898
+ summary: ""
1899
+ status: pub
1900
+ site_id: 1402237762
1901
+
1902
+ # ========== ocean (generated from 'nodes.yml') ===========
1903
+
1904
+
1905
+ # ========== README (generated from 'nodes.yml') ===========
1906
+
1907
+
1908
+ # ========== zena (generated from 'nodes.yml') ===========
1909
+