zena 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,2592 @@
1
+ # Fixtures generated from content of 'sites' folder by Zena::FoxyNodesParser (rake zena:build_fixtures)
2
+
3
+
4
+
5
+ # ========== test/sites/complex ===========
6
+
7
+ complex_complex:
8
+ id: 1472842534
9
+ site_id: 1402237762
10
+ section_id: 1472842534
11
+ rgroup_id: 1026187164
12
+ wgroup_id: 1472842534
13
+ dgroup_id: 1168990119
14
+ project_id: 1472842534
15
+ user_id: 135138679
16
+ created_at: 2003-02-01
17
+ updated_at: 2003-02-01
18
+ ref_lang: fr
19
+ name: complex
20
+ type: Project
21
+ kpath: NPP
22
+ zip: 1
23
+ publish_from: 2003-02-01
24
+ vhash: '{"w":{"fr":1631427812},"r":{"fr":1631427812}}'
25
+ inherit: no
26
+ skin: cskin
27
+ fullpath: ""
28
+ basepath: ""
29
+
30
+
31
+ complex_cskin:
32
+ id: 1982734162
33
+ site_id: 1402237762
34
+ section_id: 1472842534
35
+ parent_id: 1472842534
36
+ rgroup_id: 1026187164
37
+ wgroup_id: 1472842534
38
+ dgroup_id: 1168990119
39
+ project_id: 1472842534
40
+ user_id: 135138679
41
+ created_at: 2003-02-01
42
+ updated_at: 2003-02-01
43
+ inherit: yes
44
+ ref_lang: fr
45
+ name: cskin
46
+ type: Skin
47
+ kpath: NPSS
48
+ zip: 2
49
+ publish_from: 2003-02-01
50
+ vhash: '{"w":{"fr":1807324503},"r":{"fr":1807324503}}'
51
+ inherit: yes
52
+ skin: cskin
53
+ fullpath: cskin
54
+ basepath: ""
55
+
56
+
57
+ complex_Node_zafu:
58
+ id: 2120608021
59
+ site_id: 1402237762
60
+ section_id: 1982734162
61
+ parent_id: 1982734162
62
+ rgroup_id: 1026187164
63
+ wgroup_id: 1472842534
64
+ dgroup_id: 1168990119
65
+ project_id: 1472842534
66
+ user_id: 135138679
67
+ created_at: 2003-02-01
68
+ updated_at: 2003-02-01
69
+ inherit: yes
70
+ ref_lang: fr
71
+ type: Template
72
+ kpath: NDTT
73
+ zip: 3
74
+ publish_from: 2003-02-01
75
+ vhash: '{"w":{"fr":1011268239},"r":{"fr":1011268239}}'
76
+ inherit: yes
77
+ skin: cskin
78
+ fullpath: cskin/Node
79
+ basepath: ""
80
+ name: Node
81
+
82
+ # ------------- EMPLOYEES
83
+
84
+ complex_employees:
85
+ id: 2125025856
86
+ site_id: 1402237762
87
+ section_id: 1472842534
88
+ parent_id: 1472842534
89
+ rgroup_id: 1026187164
90
+ wgroup_id: 1472842534
91
+ dgroup_id: 1168990119
92
+ project_id: 1472842534
93
+ user_id: 135138679
94
+ created_at: 2003-02-01
95
+ updated_at: 2003-02-01
96
+ inherit: yes
97
+ ref_lang: fr
98
+ name: employees
99
+ type: Section
100
+ kpath: NPS
101
+ zip: 4
102
+ publish_from: 2003-02-01
103
+ vhash: '{"w":{"fr":1108395402},"r":{"fr":1108395402}}'
104
+ inherit: yes
105
+ skin: cskin
106
+ fullpath: employees
107
+ basepath: ""
108
+
109
+
110
+ complex_roger:
111
+ id: 13607777
112
+ site_id: 1402237762
113
+ section_id: 2125025856
114
+ parent_id: 2125025856
115
+ rgroup_id: 1026187164
116
+ wgroup_id: 1472842534
117
+ dgroup_id: 1168990119
118
+ project_id: 1472842534
119
+ user_id: 135138679
120
+ created_at: 2003-02-01
121
+ updated_at: 2003-02-01
122
+ inherit: yes
123
+ ref_lang: fr
124
+ name: roger
125
+ type: Contact
126
+ vclass_id: 1848831759
127
+ kpath: NRCE
128
+ zip: 5
129
+ publish_from: 2003-02-01
130
+ vhash: '{"w":{"fr":1395365638},"r":{"fr":1395365638}}'
131
+ inherit: yes
132
+ skin: cskin
133
+ fullpath: employees/roger
134
+ basepath: ""
135
+
136
+
137
+ complex_joe:
138
+ id: 1463765376
139
+ site_id: 1402237762
140
+ section_id: 2125025856
141
+ parent_id: 2125025856
142
+ rgroup_id: 1026187164
143
+ wgroup_id: 1472842534
144
+ dgroup_id: 1168990119
145
+ project_id: 1472842534
146
+ user_id: 135138679
147
+ created_at: 2003-02-01
148
+ updated_at: 2003-02-01
149
+ inherit: yes
150
+ ref_lang: fr
151
+ name: joe
152
+ type: Contact
153
+ vclass_id: 1848831759
154
+ kpath: NRCE
155
+ zip: 6
156
+ publish_from: 2003-02-01
157
+ vhash: '{"w":{"fr":1675996680},"r":{"fr":1675996680}}'
158
+ inherit: yes
159
+ skin: cskin
160
+ fullpath: employees/joe
161
+ basepath: ""
162
+
163
+
164
+ complex_mike:
165
+ id: 99397558
166
+ site_id: 1402237762
167
+ section_id: 2125025856
168
+ parent_id: 2125025856
169
+ rgroup_id: 1026187164
170
+ wgroup_id: 1472842534
171
+ dgroup_id: 1168990119
172
+ project_id: 1472842534
173
+ user_id: 135138679
174
+ created_at: 2003-02-01
175
+ updated_at: 2003-02-01
176
+ inherit: yes
177
+ ref_lang: fr
178
+ name: mike
179
+ type: Contact
180
+ vclass_id: 1848831759
181
+ kpath: NRCE
182
+ zip: 7
183
+ publish_from: 2003-02-01
184
+ vhash: '{"w":{"fr":1425924220},"r":{"fr":1425924220}}'
185
+ inherit: yes
186
+ skin: cskin
187
+ fullpath: employees/mike
188
+ basepath: ""
189
+
190
+ # ------------- JOBS
191
+
192
+ complex_jobs:
193
+ id: 966845862
194
+ site_id: 1402237762
195
+ section_id: 1472842534
196
+ parent_id: 1472842534
197
+ rgroup_id: 1026187164
198
+ wgroup_id: 1472842534
199
+ dgroup_id: 1168990119
200
+ project_id: 1472842534
201
+ user_id: 135138679
202
+ created_at: 2003-02-01
203
+ updated_at: 2003-02-01
204
+ inherit: yes
205
+ ref_lang: fr
206
+ name: jobs
207
+ type: Section
208
+ kpath: NPS
209
+ zip: 8
210
+ publish_from: 2003-02-01
211
+ vhash: '{"w":{"fr":1063344093},"r":{"fr":1063344093}}'
212
+ inherit: yes
213
+ skin: cskin
214
+ fullpath: jobs
215
+ basepath: ""
216
+
217
+
218
+ complex_driver:
219
+ id: 402132320
220
+ site_id: 1402237762
221
+ section_id: 966845862
222
+ parent_id: 966845862
223
+ rgroup_id: 1026187164
224
+ wgroup_id: 1472842534
225
+ dgroup_id: 1168990119
226
+ project_id: 1472842534
227
+ user_id: 135138679
228
+ created_at: 2003-02-01
229
+ updated_at: 2003-02-01
230
+ inherit: yes
231
+ ref_lang: fr
232
+ name: driver
233
+ type: Project
234
+ vclass_id: 1897306820
235
+ kpath: NPPJ
236
+ zip: 9
237
+ publish_from: 2003-02-01
238
+ vhash: '{"w":{"fr":1948582359},"r":{"fr":1948582359}}'
239
+ inherit: yes
240
+ skin: cskin
241
+ fullpath: jobs/driver
242
+ basepath: ""
243
+
244
+
245
+ complex_driver_security:
246
+ id: 172448147
247
+ site_id: 1402237762
248
+ section_id: 966845862
249
+ parent_id: 402132320
250
+ rgroup_id: 1026187164
251
+ wgroup_id: 1472842534
252
+ dgroup_id: 1168990119
253
+ project_id: 402132320
254
+ user_id: 135138679
255
+ created_at: 2003-02-01
256
+ updated_at: 2003-02-01
257
+ inherit: yes
258
+ ref_lang: fr
259
+ name: driver_security
260
+ type: Page
261
+ kpath: NP
262
+ zip: 10
263
+ publish_from: 2003-02-01
264
+ vhash: '{"w":{"fr":1750807188},"r":{"fr":1750807188}}'
265
+ inherit: yes
266
+ skin: cskin
267
+ fullpath: jobs/driver/driver_security
268
+ basepath: ""
269
+ custom_a: 10
270
+
271
+
272
+ complex_driver_team:
273
+ id: 1413179510
274
+ site_id: 1402237762
275
+ section_id: 966845862
276
+ parent_id: 402132320
277
+ rgroup_id: 1026187164
278
+ wgroup_id: 1472842534
279
+ dgroup_id: 1168990119
280
+ project_id: 402132320
281
+ user_id: 135138679
282
+ created_at: 2003-02-01
283
+ updated_at: 2003-02-01
284
+ inherit: yes
285
+ ref_lang: fr
286
+ name: driver_team
287
+ type: Page
288
+ kpath: NP
289
+ zip: 11
290
+ publish_from: 2003-02-01
291
+ vhash: '{"w":{"fr":1499361427},"r":{"fr":1499361427}}'
292
+ inherit: yes
293
+ skin: cskin
294
+ fullpath: jobs/driver/driver_team
295
+ basepath: ""
296
+
297
+
298
+ complex_driver_mechanical:
299
+ id: 322283378
300
+ site_id: 1402237762
301
+ section_id: 966845862
302
+ parent_id: 402132320
303
+ rgroup_id: 1026187164
304
+ wgroup_id: 1472842534
305
+ dgroup_id: 1168990119
306
+ project_id: 402132320
307
+ user_id: 135138679
308
+ created_at: 2003-02-01
309
+ updated_at: 2003-02-01
310
+ inherit: yes
311
+ ref_lang: fr
312
+ name: driver_mechanical
313
+ type: Page
314
+ kpath: NP
315
+ zip: 12
316
+ publish_from: 2003-02-01
317
+ vhash: '{"w":{"fr":2009825368},"r":{"fr":2009825368}}'
318
+ inherit: yes
319
+ skin: cskin
320
+ fullpath: jobs/driver/driver_mechanical
321
+ basepath: ""
322
+
323
+
324
+ complex_technician:
325
+ id: 73171786
326
+ site_id: 1402237762
327
+ section_id: 966845862
328
+ parent_id: 966845862
329
+ rgroup_id: 1026187164
330
+ wgroup_id: 1472842534
331
+ dgroup_id: 1168990119
332
+ project_id: 1472842534
333
+ user_id: 135138679
334
+ created_at: 2003-02-01
335
+ updated_at: 2003-02-01
336
+ inherit: yes
337
+ ref_lang: fr
338
+ name: technician
339
+ type: Project
340
+ vclass_id: 1897306820
341
+ kpath: NPPJ
342
+ zip: 13
343
+ publish_from: 2003-02-01
344
+ vhash: '{"w":{"fr":406129714},"r":{"fr":406129714}}'
345
+ inherit: yes
346
+ skin: cskin
347
+ fullpath: jobs/technician
348
+ basepath: ""
349
+
350
+
351
+ complex_technician_security:
352
+ id: 629830345
353
+ site_id: 1402237762
354
+ section_id: 966845862
355
+ parent_id: 73171786
356
+ rgroup_id: 1026187164
357
+ wgroup_id: 1472842534
358
+ dgroup_id: 1168990119
359
+ project_id: 73171786
360
+ user_id: 135138679
361
+ created_at: 2003-02-01
362
+ updated_at: 2003-02-01
363
+ inherit: yes
364
+ ref_lang: fr
365
+ name: technician_security
366
+ type: Page
367
+ kpath: NP
368
+ zip: 14
369
+ publish_from: 2003-02-01
370
+ vhash: '{"w":{"fr":454537231},"r":{"fr":454537231}}'
371
+ inherit: yes
372
+ skin: cskin
373
+ fullpath: jobs/technician/technician_security
374
+ basepath: ""
375
+ custom_a: 10
376
+
377
+
378
+ complex_technician_team:
379
+ id: 159612786
380
+ site_id: 1402237762
381
+ section_id: 966845862
382
+ parent_id: 73171786
383
+ rgroup_id: 1026187164
384
+ wgroup_id: 1472842534
385
+ dgroup_id: 1168990119
386
+ project_id: 73171786
387
+ user_id: 135138679
388
+ created_at: 2003-02-01
389
+ updated_at: 2003-02-01
390
+ inherit: yes
391
+ ref_lang: fr
392
+ name: technician_team
393
+ type: Page
394
+ kpath: NP
395
+ zip: 15
396
+ publish_from: 2003-02-01
397
+ vhash: '{"w":{"fr":510551867},"r":{"fr":510551867}}'
398
+ inherit: yes
399
+ skin: cskin
400
+ fullpath: jobs/technician/technician_team
401
+ basepath: ""
402
+ custom_a: 1
403
+
404
+
405
+ complex_technician_fiber:
406
+ id: 1214391289
407
+ site_id: 1402237762
408
+ section_id: 966845862
409
+ parent_id: 73171786
410
+ rgroup_id: 1026187164
411
+ wgroup_id: 1472842534
412
+ dgroup_id: 1168990119
413
+ project_id: 73171786
414
+ user_id: 135138679
415
+ created_at: 2003-02-01
416
+ updated_at: 2003-02-01
417
+ inherit: yes
418
+ ref_lang: fr
419
+ name: technician_fiber
420
+ type: Page
421
+ kpath: NP
422
+ zip: 16
423
+ publish_from: 2003-02-01
424
+ vhash: '{"w":{"fr":839734189},"r":{"fr":839734189}}'
425
+ inherit: yes
426
+ skin: cskin
427
+ fullpath: jobs/technician/technician_fiber
428
+ basepath: ""
429
+
430
+
431
+ complex_chief:
432
+ id: 1356651676
433
+ site_id: 1402237762
434
+ section_id: 966845862
435
+ parent_id: 966845862
436
+ rgroup_id: 1026187164
437
+ wgroup_id: 1472842534
438
+ dgroup_id: 1168990119
439
+ project_id: 1472842534
440
+ user_id: 135138679
441
+ created_at: 2003-02-01
442
+ updated_at: 2003-02-01
443
+ inherit: yes
444
+ ref_lang: fr
445
+ type: Project
446
+ vclass_id: 1897306820
447
+ kpath: NPPJ
448
+ zip: 17
449
+ publish_from: 2003-02-01
450
+ vhash: '{"w":{"fr":1139554694},"r":{"fr":1139554694}}'
451
+ inherit: yes
452
+ skin: cskin
453
+ fullpath: jobs/chief
454
+ basepath: ""
455
+ name: chief
456
+
457
+
458
+ complex_chief_motivation:
459
+ id: 840879659
460
+ site_id: 1402237762
461
+ section_id: 966845862
462
+ parent_id: 1356651676
463
+ rgroup_id: 1026187164
464
+ wgroup_id: 1472842534
465
+ dgroup_id: 1168990119
466
+ project_id: 1356651676
467
+ user_id: 135138679
468
+ created_at: 2003-02-01
469
+ updated_at: 2003-02-01
470
+ inherit: yes
471
+ ref_lang: fr
472
+ name: chief_motivation
473
+ type: Page
474
+ kpath: NP
475
+ zip: 18
476
+ publish_from: 2003-02-01
477
+ vhash: '{"w":{"fr":262236298},"r":{"fr":262236298}}'
478
+ inherit: yes
479
+ skin: cskin
480
+ fullpath: jobs/chief/chief_motivation
481
+ basepath: ""
482
+ custom_a: 10
483
+
484
+
485
+ complex_chief_image:
486
+ id: 1771734066
487
+ site_id: 1402237762
488
+ section_id: 966845862
489
+ parent_id: 1356651676
490
+ rgroup_id: 1026187164
491
+ wgroup_id: 1472842534
492
+ dgroup_id: 1168990119
493
+ project_id: 1356651676
494
+ user_id: 135138679
495
+ created_at: 2003-02-01
496
+ updated_at: 2003-02-01
497
+ inherit: yes
498
+ ref_lang: fr
499
+ name: chief_image
500
+ type: Page
501
+ kpath: NP
502
+ zip: 19
503
+ publish_from: 2003-02-01
504
+ vhash: '{"w":{"fr":2111273516},"r":{"fr":2111273516}}'
505
+ inherit: yes
506
+ skin: cskin
507
+ fullpath: jobs/chief/chief_image
508
+ basepath: ""
509
+
510
+ # ------------- COURSES
511
+
512
+ complex_courses:
513
+ id: 771285545
514
+ site_id: 1402237762
515
+ section_id: 1472842534
516
+ parent_id: 1472842534
517
+ rgroup_id: 1026187164
518
+ wgroup_id: 1472842534
519
+ dgroup_id: 1168990119
520
+ project_id: 1472842534
521
+ user_id: 135138679
522
+ created_at: 2003-02-01
523
+ updated_at: 2003-02-01
524
+ inherit: yes
525
+ ref_lang: fr
526
+ name: courses
527
+ type: Page
528
+ kpath: NP
529
+ zip: 20
530
+ publish_from: 2003-02-01
531
+ vhash: '{"w":{"fr":2088603676},"r":{"fr":2088603676}}'
532
+ inherit: yes
533
+ skin: cskin
534
+ fullpath: courses
535
+ basepath: ""
536
+
537
+
538
+ complex_dangerous_transportations:
539
+ id: 1501144151
540
+ site_id: 1402237762
541
+ section_id: 1472842534
542
+ parent_id: 771285545
543
+ rgroup_id: 1026187164
544
+ wgroup_id: 1472842534
545
+ dgroup_id: 1168990119
546
+ project_id: 1472842534
547
+ user_id: 135138679
548
+ created_at: 2003-02-01
549
+ updated_at: 2003-02-01
550
+ inherit: yes
551
+ ref_lang: fr
552
+ name: dangerous_transportations
553
+ type: Project
554
+ vclass_id: 397155082
555
+ kpath: NPPC
556
+ zip: 21
557
+ publish_from: 2003-02-01
558
+ vhash: '{"w":{"fr":525132984},"r":{"fr":525132984}}'
559
+ inherit: yes
560
+ skin: cskin
561
+ fullpath: courses/dangerous_transportations
562
+ basepath: ""
563
+ # 2 years = 2 * 12 months = 24
564
+ custom_a: 24
565
+
566
+
567
+ complex_formulate_problems:
568
+ id: 1370405727
569
+ site_id: 1402237762
570
+ section_id: 1472842534
571
+ parent_id: 771285545
572
+ rgroup_id: 1026187164
573
+ wgroup_id: 1472842534
574
+ dgroup_id: 1168990119
575
+ project_id: 1472842534
576
+ user_id: 135138679
577
+ created_at: 2003-02-01
578
+ updated_at: 2003-02-01
579
+ inherit: yes
580
+ ref_lang: fr
581
+ name: formulate_problems
582
+ type: Project
583
+ vclass_id: 397155082
584
+ kpath: NPPC
585
+ zip: 22
586
+ publish_from: 2003-02-01
587
+ vhash: '{"w":{"fr":1165006425},"r":{"fr":1165006425}}'
588
+ inherit: yes
589
+ skin: cskin
590
+ fullpath: courses/formulate_problems
591
+ basepath: ""
592
+
593
+
594
+ complex_transmit_information:
595
+ id: 586729701
596
+ site_id: 1402237762
597
+ section_id: 1472842534
598
+ parent_id: 771285545
599
+ rgroup_id: 1026187164
600
+ wgroup_id: 1472842534
601
+ dgroup_id: 1168990119
602
+ project_id: 1472842534
603
+ user_id: 135138679
604
+ created_at: 2003-02-01
605
+ updated_at: 2003-02-01
606
+ inherit: yes
607
+ ref_lang: fr
608
+ name: transmit_information
609
+ type: Project
610
+ vclass_id: 397155082
611
+ kpath: NPPC
612
+ zip: 23
613
+ publish_from: 2003-02-01
614
+ vhash: '{"w":{"fr":195244824},"r":{"fr":195244824}}'
615
+ inherit: yes
616
+ skin: cskin
617
+ fullpath: courses/transmit_information
618
+ basepath: ""
619
+ custom_a: 12
620
+
621
+
622
+ complex_engine:
623
+ id: 1849060107
624
+ site_id: 1402237762
625
+ section_id: 1472842534
626
+ parent_id: 771285545
627
+ rgroup_id: 1026187164
628
+ wgroup_id: 1472842534
629
+ dgroup_id: 1168990119
630
+ project_id: 1472842534
631
+ user_id: 135138679
632
+ created_at: 2003-02-01
633
+ updated_at: 2003-02-01
634
+ inherit: yes
635
+ ref_lang: fr
636
+ name: engine
637
+ type: Project
638
+ vclass_id: 397155082
639
+ kpath: NPPC
640
+ zip: 24
641
+ publish_from: 2003-02-01
642
+ vhash: '{"w":{"fr":1357620436},"r":{"fr":1357620436}}'
643
+ inherit: yes
644
+ skin: cskin
645
+ fullpath: courses/engine
646
+ basepath: ""
647
+ custom_a: 24
648
+
649
+
650
+ complex_secure_a_site:
651
+ id: 1316883648
652
+ site_id: 1402237762
653
+ section_id: 1472842534
654
+ parent_id: 771285545
655
+ rgroup_id: 1026187164
656
+ wgroup_id: 1472842534
657
+ dgroup_id: 1168990119
658
+ project_id: 1472842534
659
+ user_id: 135138679
660
+ created_at: 2003-02-01
661
+ updated_at: 2003-02-01
662
+ inherit: yes
663
+ ref_lang: fr
664
+ name: secure_a_site
665
+ type: Project
666
+ vclass_id: 397155082
667
+ kpath: NPPC
668
+ zip: 25
669
+ publish_from: 2003-02-01
670
+ vhash: '{"w":{"fr":531294616},"r":{"fr":531294616}}'
671
+ inherit: yes
672
+ skin: cskin
673
+ fullpath: courses/secure_a_site
674
+ basepath: ""
675
+ custom_a: 24
676
+
677
+
678
+ complex_winch_usage:
679
+ id: 2140151161
680
+ site_id: 1402237762
681
+ section_id: 1472842534
682
+ parent_id: 771285545
683
+ rgroup_id: 1026187164
684
+ wgroup_id: 1472842534
685
+ dgroup_id: 1168990119
686
+ project_id: 1472842534
687
+ user_id: 135138679
688
+ created_at: 2003-02-01
689
+ updated_at: 2003-02-01
690
+ inherit: yes
691
+ ref_lang: fr
692
+ name: winch_usage
693
+ type: Project
694
+ vclass_id: 397155082
695
+ kpath: NPPC
696
+ zip: 26
697
+ publish_from: 2003-02-01
698
+ vhash: '{"w":{"fr":1095680086},"r":{"fr":1095680086}}'
699
+ inherit: yes
700
+ skin: cskin
701
+ fullpath: courses/winch_usage
702
+ basepath: ""
703
+ custom_a: 24
704
+
705
+
706
+ complex_radio_usage:
707
+ id: 1549359384
708
+ site_id: 1402237762
709
+ section_id: 1472842534
710
+ parent_id: 771285545
711
+ rgroup_id: 1026187164
712
+ wgroup_id: 1472842534
713
+ dgroup_id: 1168990119
714
+ project_id: 1472842534
715
+ user_id: 135138679
716
+ created_at: 2003-02-01
717
+ updated_at: 2003-02-01
718
+ inherit: yes
719
+ ref_lang: fr
720
+ name: radio_usage
721
+ type: Project
722
+ vclass_id: 397155082
723
+ kpath: NPPC
724
+ zip: 27
725
+ publish_from: 2003-02-01
726
+ vhash: '{"w":{"fr":1974130378},"r":{"fr":1974130378}}'
727
+ inherit: yes
728
+ skin: cskin
729
+ fullpath: courses/radio_usage
730
+ basepath: ""
731
+ custom_a: 24
732
+
733
+
734
+ complex_fiber_junction:
735
+ id: 685623258
736
+ site_id: 1402237762
737
+ section_id: 1472842534
738
+ parent_id: 771285545
739
+ rgroup_id: 1026187164
740
+ wgroup_id: 1472842534
741
+ dgroup_id: 1168990119
742
+ project_id: 1472842534
743
+ user_id: 135138679
744
+ created_at: 2003-02-01
745
+ updated_at: 2003-02-01
746
+ inherit: yes
747
+ ref_lang: fr
748
+ name: fiber_junction
749
+ type: Project
750
+ vclass_id: 397155082
751
+ kpath: NPPC
752
+ zip: 28
753
+ publish_from: 2003-02-01
754
+ vhash: '{"w":{"fr":1804373338},"r":{"fr":1804373338}}'
755
+ inherit: yes
756
+ skin: cskin
757
+ fullpath: courses/fiber_junction
758
+ basepath: ""
759
+ custom_a: 24
760
+
761
+
762
+ complex_resp_management:
763
+ id: 1395318420
764
+ site_id: 1402237762
765
+ section_id: 1472842534
766
+ parent_id: 771285545
767
+ rgroup_id: 1026187164
768
+ wgroup_id: 1472842534
769
+ dgroup_id: 1168990119
770
+ project_id: 1472842534
771
+ user_id: 135138679
772
+ created_at: 2003-02-01
773
+ updated_at: 2003-02-01
774
+ inherit: yes
775
+ ref_lang: fr
776
+ name: resp_management
777
+ type: Project
778
+ vclass_id: 397155082
779
+ kpath: NPPC
780
+ zip: 29
781
+ publish_from: 2003-02-01
782
+ vhash: '{"w":{"fr":722951574},"r":{"fr":722951574}}'
783
+ inherit: yes
784
+ skin: cskin
785
+ fullpath: courses/resp_management
786
+ basepath: ""
787
+ custom_a: 24
788
+
789
+
790
+ complex_team_motivation:
791
+ id: 1544688456
792
+ site_id: 1402237762
793
+ section_id: 1472842534
794
+ parent_id: 771285545
795
+ rgroup_id: 1026187164
796
+ wgroup_id: 1472842534
797
+ dgroup_id: 1168990119
798
+ project_id: 1472842534
799
+ user_id: 135138679
800
+ created_at: 2003-02-01
801
+ updated_at: 2003-02-01
802
+ inherit: yes
803
+ ref_lang: fr
804
+ name: team_motivation
805
+ type: Project
806
+ vclass_id: 397155082
807
+ kpath: NPPC
808
+ zip: 30
809
+ publish_from: 2003-02-01
810
+ vhash: '{"w":{"fr":1921959918},"r":{"fr":1921959918}}'
811
+ inherit: yes
812
+ skin: cskin
813
+ fullpath: courses/team_motivation
814
+ basepath: ""
815
+ custom_a: 24
816
+
817
+
818
+ complex_vision:
819
+ id: 149352239
820
+ site_id: 1402237762
821
+ section_id: 1472842534
822
+ parent_id: 771285545
823
+ rgroup_id: 1026187164
824
+ wgroup_id: 1472842534
825
+ dgroup_id: 1168990119
826
+ project_id: 1472842534
827
+ user_id: 135138679
828
+ created_at: 2003-02-01
829
+ updated_at: 2003-02-01
830
+ inherit: yes
831
+ ref_lang: fr
832
+ name: vision
833
+ type: Project
834
+ vclass_id: 397155082
835
+ kpath: NPPC
836
+ zip: 31
837
+ publish_from: 2003-02-01
838
+ vhash: '{"w":{"fr":915653910},"r":{"fr":915653910}}'
839
+ inherit: yes
840
+ skin: cskin
841
+ fullpath: courses/vision
842
+ basepath: ""
843
+ custom_a: 24
844
+
845
+ # ------------- FORMATIONS
846
+
847
+
848
+ complex_transp2004:
849
+ id: 124965640
850
+ site_id: 1402237762
851
+ section_id: 1472842534
852
+ parent_id: 1501144151
853
+ rgroup_id: 1026187164
854
+ wgroup_id: 1472842534
855
+ dgroup_id: 1168990119
856
+ project_id: 1501144151
857
+ user_id: 135138679
858
+ created_at: 2003-02-01
859
+ updated_at: 2003-02-01
860
+ inherit: yes
861
+ ref_lang: fr
862
+ name: transp2004
863
+ type: Note
864
+ vclass_id: 110768732
865
+ kpath: NNF
866
+ zip: 32
867
+ publish_from: 2003-02-01
868
+ vhash: '{"w":{"fr":73202784},"r":{"fr":73202784}}'
869
+ inherit: yes
870
+ skin: cskin
871
+ fullpath: courses/dangerous_transportations/transp2004
872
+ basepath: ""
873
+ event_at: 2004-03-15
874
+
875
+
876
+ complex_transp2006:
877
+ id: 1769779755
878
+ site_id: 1402237762
879
+ section_id: 1472842534
880
+ parent_id: 1501144151
881
+ rgroup_id: 1026187164
882
+ wgroup_id: 1472842534
883
+ dgroup_id: 1168990119
884
+ project_id: 1501144151
885
+ user_id: 135138679
886
+ created_at: 2003-02-01
887
+ updated_at: 2003-02-01
888
+ inherit: yes
889
+ ref_lang: fr
890
+ name: transp2006
891
+ type: Note
892
+ vclass_id: 110768732
893
+ kpath: NNF
894
+ zip: 33
895
+ publish_from: 2003-02-01
896
+ vhash: '{"w":{"fr":777336044},"r":{"fr":777336044}}'
897
+ inherit: yes
898
+ skin: cskin
899
+ fullpath: courses/dangerous_transportations/transp2006
900
+ basepath: ""
901
+ event_at: 2006-04-21
902
+
903
+
904
+ complex_fiber2002:
905
+ id: 1814365203
906
+ site_id: 1402237762
907
+ section_id: 1472842534
908
+ parent_id: 685623258
909
+ rgroup_id: 1026187164
910
+ wgroup_id: 1472842534
911
+ dgroup_id: 1168990119
912
+ project_id: 685623258
913
+ user_id: 135138679
914
+ created_at: 2003-02-01
915
+ updated_at: 2003-02-01
916
+ inherit: yes
917
+ ref_lang: fr
918
+ name: fiber2002
919
+ type: Note
920
+ vclass_id: 110768732
921
+ kpath: NNF
922
+ zip: 34
923
+ publish_from: 2003-02-01
924
+ vhash: '{"w":{"fr":604332200},"r":{"fr":604332200}}'
925
+ inherit: yes
926
+ skin: cskin
927
+ fullpath: courses/fiber_junction/fiber2002
928
+ basepath: ""
929
+ event_at: 2002-02-02
930
+
931
+
932
+ complex_fiber2003:
933
+ id: 455226501
934
+ site_id: 1402237762
935
+ section_id: 1472842534
936
+ parent_id: 685623258
937
+ rgroup_id: 1026187164
938
+ wgroup_id: 1472842534
939
+ dgroup_id: 1168990119
940
+ project_id: 685623258
941
+ user_id: 135138679
942
+ created_at: 2003-02-01
943
+ updated_at: 2003-02-01
944
+ inherit: yes
945
+ ref_lang: fr
946
+ name: fiber2003
947
+ type: Note
948
+ vclass_id: 110768732
949
+ kpath: NNF
950
+ zip: 35
951
+ publish_from: 2003-02-01
952
+ vhash: '{"w":{"fr":481888206},"r":{"fr":481888206}}'
953
+ inherit: yes
954
+ skin: cskin
955
+ fullpath: courses/fiber_junction/fiber2003
956
+ basepath: ""
957
+ event_at: 2003-03-03
958
+
959
+
960
+ complex_form2005:
961
+ id: 343378685
962
+ site_id: 1402237762
963
+ section_id: 1472842534
964
+ parent_id: 1370405727
965
+ rgroup_id: 1026187164
966
+ wgroup_id: 1472842534
967
+ dgroup_id: 1168990119
968
+ project_id: 1370405727
969
+ user_id: 135138679
970
+ created_at: 2003-02-01
971
+ updated_at: 2003-02-01
972
+ inherit: yes
973
+ ref_lang: fr
974
+ name: form2005
975
+ type: Note
976
+ vclass_id: 110768732
977
+ kpath: NNF
978
+ zip: 36
979
+ publish_from: 2003-02-01
980
+ vhash: '{"w":{"fr":652112593},"r":{"fr":652112593}}'
981
+ inherit: yes
982
+ skin: cskin
983
+ fullpath: courses/formulate_problems/form2005
984
+ basepath: ""
985
+ event_at: 2005-03-20
986
+
987
+
988
+ complex_form2006:
989
+ id: 226417478
990
+ site_id: 1402237762
991
+ section_id: 1472842534
992
+ parent_id: 1370405727
993
+ rgroup_id: 1026187164
994
+ wgroup_id: 1472842534
995
+ dgroup_id: 1168990119
996
+ project_id: 1370405727
997
+ user_id: 135138679
998
+ created_at: 2003-02-01
999
+ updated_at: 2003-02-01
1000
+ inherit: yes
1001
+ ref_lang: fr
1002
+ name: form2006
1003
+ type: Note
1004
+ vclass_id: 110768732
1005
+ kpath: NNF
1006
+ zip: 37
1007
+ publish_from: 2003-02-01
1008
+ vhash: '{"w":{"fr":879484223},"r":{"fr":879484223}}'
1009
+ inherit: yes
1010
+ skin: cskin
1011
+ fullpath: courses/formulate_problems/form2006
1012
+ basepath: ""
1013
+ event_at: 2006-03-20
1014
+
1015
+
1016
+ complex_transm2001:
1017
+ id: 1869116603
1018
+ site_id: 1402237762
1019
+ section_id: 1472842534
1020
+ parent_id: 586729701
1021
+ rgroup_id: 1026187164
1022
+ wgroup_id: 1472842534
1023
+ dgroup_id: 1168990119
1024
+ project_id: 586729701
1025
+ user_id: 135138679
1026
+ created_at: 2003-02-01
1027
+ updated_at: 2003-02-01
1028
+ inherit: yes
1029
+ ref_lang: fr
1030
+ name: transm2001
1031
+ type: Note
1032
+ vclass_id: 110768732
1033
+ kpath: NNF
1034
+ zip: 38
1035
+ publish_from: 2003-02-01
1036
+ vhash: '{"w":{"fr":1413228713},"r":{"fr":1413228713}}'
1037
+ inherit: yes
1038
+ skin: cskin
1039
+ fullpath: courses/transmit_information/transm2001
1040
+ basepath: ""
1041
+ event_at: 2001-06-15
1042
+
1043
+
1044
+ complex_transm2002:
1045
+ id: 1986077954
1046
+ site_id: 1402237762
1047
+ section_id: 1472842534
1048
+ parent_id: 586729701
1049
+ rgroup_id: 1026187164
1050
+ wgroup_id: 1472842534
1051
+ dgroup_id: 1168990119
1052
+ project_id: 586729701
1053
+ user_id: 135138679
1054
+ created_at: 2003-02-01
1055
+ updated_at: 2003-02-01
1056
+ inherit: yes
1057
+ ref_lang: fr
1058
+ name: transm2002
1059
+ type: Note
1060
+ vclass_id: 110768732
1061
+ kpath: NNF
1062
+ zip: 39
1063
+ publish_from: 2003-02-01
1064
+ vhash: '{"w":{"fr":1183418183},"r":{"fr":1183418183}}'
1065
+ inherit: yes
1066
+ skin: cskin
1067
+ fullpath: courses/transmit_information/transm2002
1068
+ basepath: ""
1069
+ event_at: 2002-05-05
1070
+
1071
+
1072
+ complex_transm2003:
1073
+ id: 23467416
1074
+ site_id: 1402237762
1075
+ section_id: 1472842534
1076
+ parent_id: 586729701
1077
+ rgroup_id: 1026187164
1078
+ wgroup_id: 1472842534
1079
+ dgroup_id: 1168990119
1080
+ project_id: 586729701
1081
+ user_id: 135138679
1082
+ created_at: 2003-02-01
1083
+ updated_at: 2003-02-01
1084
+ inherit: yes
1085
+ ref_lang: fr
1086
+ name: transm2003
1087
+ type: Note
1088
+ vclass_id: 110768732
1089
+ kpath: NNF
1090
+ zip: 40
1091
+ publish_from: 2003-02-01
1092
+ vhash: '{"w":{"fr":2117460003},"r":{"fr":2117460003}}'
1093
+ inherit: yes
1094
+ skin: cskin
1095
+ fullpath: courses/transmit_information/transm2003
1096
+ basepath: ""
1097
+ event_at: 2003-03-20
1098
+
1099
+
1100
+ complex_vision2003:
1101
+ id: 1670097390
1102
+ site_id: 1402237762
1103
+ section_id: 1472842534
1104
+ parent_id: 149352239
1105
+ rgroup_id: 1026187164
1106
+ wgroup_id: 1472842534
1107
+ dgroup_id: 1168990119
1108
+ project_id: 149352239
1109
+ user_id: 135138679
1110
+ created_at: 2003-02-01
1111
+ updated_at: 2003-02-01
1112
+ inherit: yes
1113
+ ref_lang: fr
1114
+ name: vision2003
1115
+ type: Note
1116
+ vclass_id: 110768732
1117
+ kpath: NNF
1118
+ zip: 41
1119
+ publish_from: 2003-02-01
1120
+ vhash: '{"w":{"fr":870239344},"r":{"fr":870239344}}'
1121
+ inherit: yes
1122
+ skin: cskin
1123
+ fullpath: courses/vision/vision2003
1124
+ basepath: ""
1125
+ event_at: 2003-04-05
1126
+
1127
+ # ========== test/sites/ocean ===========
1128
+
1129
+ ocean_ocean:
1130
+ id: 345907766
1131
+ site_id: 1814253598
1132
+ section_id: 345907766
1133
+ rgroup_id: 242826133
1134
+ wgroup_id: 398817103
1135
+ dgroup_id: 398817103
1136
+ project_id: 345907766
1137
+ user_id: 1321665606
1138
+ created_at: 2006-02-01
1139
+ updated_at: 2006-04-11
1140
+ publish_from: 2006-03-10
1141
+ ref_lang: en
1142
+ type: Project
1143
+ kpath: NPP
1144
+ zip: 1
1145
+ publish_from: 2006-03-10
1146
+ vhash: '{"w":{"en":985793144},"r":{"en":985793144}}'
1147
+ inherit: no
1148
+ skin: default
1149
+ fullpath: ""
1150
+ basepath: ""
1151
+ name: other
1152
+
1153
+
1154
+ ocean_incognito:
1155
+ id: 211907523
1156
+ site_id: 1814253598
1157
+ section_id: 345907766
1158
+ parent_id: 345907766
1159
+ rgroup_id: 242826133
1160
+ wgroup_id: 398817103
1161
+ dgroup_id: 398817103
1162
+ project_id: 345907766
1163
+ user_id: 1321665606
1164
+ created_at: 2006-02-01
1165
+ updated_at: 2006-04-11
1166
+ inherit: yes
1167
+ publish_from: 2006-03-10
1168
+ ref_lang: en
1169
+ name: incognito
1170
+ type: Contact
1171
+ kpath: NRC
1172
+ zip: 2
1173
+ publish_from: 2006-03-10
1174
+ vhash: '{"w":{"en":499751115},"r":{"en":499751115}}'
1175
+ inherit: yes
1176
+ skin: default
1177
+ fullpath: incognito
1178
+ basepath: ""
1179
+
1180
+
1181
+ ocean_whale:
1182
+ id: 913995374
1183
+ site_id: 1814253598
1184
+ section_id: 345907766
1185
+ parent_id: 345907766
1186
+ rgroup_id: 242826133
1187
+ wgroup_id: 398817103
1188
+ dgroup_id: 398817103
1189
+ project_id: 345907766
1190
+ user_id: 1321665606
1191
+ created_at: 2006-02-01
1192
+ updated_at: 2006-04-11
1193
+ inherit: yes
1194
+ publish_from: 2006-03-10
1195
+ ref_lang: en
1196
+ type: Contact
1197
+ kpath: NRC
1198
+ zip: 3
1199
+ publish_from: 2006-03-10
1200
+ vhash: '{"w":{"en":597392822},"r":{"en":597392822}}'
1201
+ inherit: yes
1202
+ skin: default
1203
+ fullpath: whale
1204
+ basepath: ""
1205
+ name: whale
1206
+
1207
+
1208
+ ocean_skin:
1209
+ id: 952296023
1210
+ site_id: 1814253598
1211
+ section_id: 345907766
1212
+ parent_id: 345907766
1213
+ rgroup_id: 242826133
1214
+ wgroup_id: 398817103
1215
+ dgroup_id: 398817103
1216
+ project_id: 345907766
1217
+ user_id: 1321665606
1218
+ created_at: 2006-02-01
1219
+ updated_at: 2006-04-11
1220
+ inherit: yes
1221
+ publish_from: 2006-03-10
1222
+ ref_lang: en
1223
+ type: Skin
1224
+ kpath: NPSS
1225
+ zip: 4
1226
+ publish_from: 2006-03-10
1227
+ vhash: '{"w":{"en":1530004330},"r":{"en":1530004330}}'
1228
+ inherit: yes
1229
+ skin: default
1230
+ fullpath: default
1231
+ basepath: ""
1232
+ name: default
1233
+
1234
+
1235
+ ocean_Node:
1236
+ id: 536268084
1237
+ site_id: 1814253598
1238
+ section_id: 952296023
1239
+ parent_id: 952296023
1240
+ rgroup_id: 242826133
1241
+ wgroup_id: 398817103
1242
+ dgroup_id: 398817103
1243
+ project_id: 345907766
1244
+ user_id: 1321665606
1245
+ created_at: 2006-02-01
1246
+ updated_at: 2006-04-11
1247
+ inherit: yes
1248
+ publish_from: 2006-03-10
1249
+ ref_lang: en
1250
+ name: Node
1251
+ type: Template
1252
+ kpath: NDTT
1253
+ zip: 5
1254
+ publish_from: 2006-03-10
1255
+ vhash: '{"w":{"en":646366814},"r":{"en":646366814}}'
1256
+ inherit: yes
1257
+ skin: default
1258
+ fullpath: default/Node
1259
+ basepath: ""
1260
+
1261
+ # ========== test/sites/zena ===========
1262
+
1263
+ zena_zena:
1264
+ id: 850927283
1265
+ site_id: 705790409
1266
+ section_id: 850927283
1267
+ rgroup_id: 399480925
1268
+ wgroup_id: 962230129
1269
+ dgroup_id: 1646863488
1270
+ project_id: 850927283
1271
+ user_id: 1732729804
1272
+ updated_at: 2006-04-11
1273
+ ref_lang: en
1274
+ name: zena
1275
+ type: Project
1276
+ kpath: NPP
1277
+ zip: 11
1278
+ publish_from: 2006-03-10
1279
+ vhash: '{"w":{"en":2093098809},"r":{"en":2093098809}}'
1280
+ inherit: no
1281
+ skin: default
1282
+ fullpath: ""
1283
+ basepath: ""
1284
+ created_at: 2006-02-01
1285
+
1286
+
1287
+
1288
+ zena_people:
1289
+ id: 74308712
1290
+ site_id: 705790409
1291
+ section_id: 850927283
1292
+ parent_id: 850927283
1293
+ rgroup_id: 399480925
1294
+ wgroup_id: 962230129
1295
+ dgroup_id: 1646863488
1296
+ project_id: 850927283
1297
+ user_id: 1732729804
1298
+ created_at: 2006-03-10
1299
+ updated_at: 2006-04-11
1300
+ inherit: yes
1301
+ ref_lang: en
1302
+ name: people
1303
+ type: Section
1304
+ kpath: NPS
1305
+ zip: 12
1306
+ publish_from: 2006-03-10
1307
+ vhash: '{"w":{"en":2033658357},"r":{"en":2033658357}}'
1308
+ inherit: yes
1309
+ skin: default
1310
+ fullpath: people
1311
+ basepath: ""
1312
+
1313
+
1314
+ zena_ant:
1315
+ id: 1643990091
1316
+ site_id: 705790409
1317
+ section_id: 74308712
1318
+ parent_id: 74308712
1319
+ rgroup_id: 399480925
1320
+ wgroup_id: 962230129
1321
+ dgroup_id: 1646863488
1322
+ project_id: 850927283
1323
+ user_id: 440568585
1324
+ created_at: 2006-03-10
1325
+ updated_at: 2006-04-11
1326
+ inherit: yes
1327
+ ref_lang: en
1328
+ name: ant
1329
+ type: Contact
1330
+ kpath: NRC
1331
+ zip: 13
1332
+ publish_from: 2006-03-10
1333
+ vhash: '{"w":{"en":1227788235},"r":{"en":1227788235}}'
1334
+ inherit: yes
1335
+ skin: default
1336
+ fullpath: people/ant
1337
+ basepath: ""
1338
+
1339
+
1340
+ zena_myLife:
1341
+ id: 1168819973
1342
+ site_id: 705790409
1343
+ section_id: 74308712
1344
+ parent_id: 1643990091
1345
+ rgroup_id: 399480925
1346
+ wgroup_id: 962230129
1347
+ dgroup_id: 1646863488
1348
+ project_id: 850927283
1349
+ user_id: 440568585
1350
+ created_at: 2006-03-10
1351
+ updated_at: 2006-04-11
1352
+ inherit: yes
1353
+ ref_lang: en
1354
+ name: myLife
1355
+ type: Page
1356
+ kpath: NP
1357
+ zip: 16
1358
+ publish_from: 2006-03-10
1359
+ vhash: '{"w":{"en":529580101},"r":{"en":529580101}}'
1360
+ inherit: yes
1361
+ skin: default
1362
+ fullpath: people/ant/myLife
1363
+ basepath: ""
1364
+
1365
+
1366
+ zena_anonymous:
1367
+ id: 1176611712
1368
+ site_id: 705790409
1369
+ section_id: 74308712
1370
+ parent_id: 74308712
1371
+ rgroup_id: 399480925
1372
+ wgroup_id: 962230129
1373
+ dgroup_id: 1646863488
1374
+ project_id: 850927283
1375
+ user_id: 1608342591
1376
+ created_at: 2006-03-10
1377
+ updated_at: 2006-04-11
1378
+ inherit: yes
1379
+ ref_lang: en
1380
+ name: anonymous
1381
+ type: Contact
1382
+ kpath: NRC
1383
+ zip: 47
1384
+ publish_from: 2006-03-10
1385
+ vhash: '{"w":{"en":1947613685},"r":{"en":1947613685}}'
1386
+ inherit: yes
1387
+ skin: default
1388
+ fullpath: people/anonymous
1389
+ basepath: ""
1390
+
1391
+
1392
+ zena_tiger:
1393
+ id: 537418472
1394
+ site_id: 705790409
1395
+ section_id: 74308712
1396
+ parent_id: 74308712
1397
+ rgroup_id: 399480925
1398
+ wgroup_id: 962230129
1399
+ dgroup_id: 1646863488
1400
+ project_id: 850927283
1401
+ user_id: 1732729804
1402
+ created_at: 2006-03-10
1403
+ updated_at: 2006-04-11
1404
+ inherit: yes
1405
+ ref_lang: en
1406
+ name: tiger
1407
+ type: Contact
1408
+ kpath: NRC
1409
+ zip: 14
1410
+ publish_from: 2006-03-10
1411
+ vhash: '{"w":{"en":1208195148},"r":{"en":1208195148}}'
1412
+ inherit: yes
1413
+ skin: default
1414
+ fullpath: people/tiger
1415
+ basepath: ""
1416
+
1417
+
1418
+ zena_lion:
1419
+ id: 1198834501
1420
+ site_id: 705790409
1421
+ section_id: 74308712
1422
+ parent_id: 74308712
1423
+ rgroup_id: 399480925
1424
+ wgroup_id: 962230129
1425
+ dgroup_id: 1646863488
1426
+ project_id: 850927283
1427
+ user_id: 1608342591
1428
+ created_at: 2006-03-10
1429
+ updated_at: 2006-04-11
1430
+ inherit: yes
1431
+ ref_lang: en
1432
+ name: lion
1433
+ type: Contact
1434
+ kpath: NRC
1435
+ zip: 15
1436
+ publish_from: 2006-03-10
1437
+ vhash: '{"w":{"en":1779267410},"r":{"en":1779267410}}'
1438
+ inherit: yes
1439
+ skin: default
1440
+ fullpath: people/lion
1441
+ basepath: ""
1442
+
1443
+
1444
+ zena_myDreams:
1445
+ id: 1463112675
1446
+ site_id: 705790409
1447
+ section_id: 74308712
1448
+ parent_id: 1198834501
1449
+ rgroup_id: 0
1450
+ wgroup_id: 0
1451
+ dgroup_id: 0
1452
+ project_id: 850927283
1453
+ user_id: 1608342591
1454
+ created_at: 2006-03-10
1455
+ updated_at: 2006-04-11
1456
+ ref_lang: en
1457
+ name: myDreams
1458
+ type: Page
1459
+ kpath: NP
1460
+ zip: 17
1461
+ publish_from: 2006-03-10
1462
+ vhash: '{"w":{"en":1197649295},"r":{"en":1197649295}}'
1463
+ inherit: no
1464
+ fullpath: people/lion/myDreams
1465
+ basepath: ""
1466
+
1467
+
1468
+ zena_projects:
1469
+ id: 401831715
1470
+ site_id: 705790409
1471
+ section_id: 850927283
1472
+ parent_id: 850927283
1473
+ rgroup_id: 399480925
1474
+ wgroup_id: 962230129
1475
+ dgroup_id: 1646863488
1476
+ project_id: 850927283
1477
+ user_id: 1732729804
1478
+ created_at: 2006-03-10
1479
+ updated_at: 2006-04-11
1480
+ inherit: yes
1481
+ ref_lang: en
1482
+ name: projects
1483
+ type: Page
1484
+ kpath: NP
1485
+ zip: 18
1486
+ publish_from: 2006-03-10
1487
+ vhash: '{"w":{"en":1428340140},"r":{"en":1428340140}}'
1488
+ inherit: yes
1489
+ skin: default
1490
+ fullpath: projects
1491
+ basepath: ""
1492
+
1493
+
1494
+ zena_secret:
1495
+ id: 1893293733
1496
+ site_id: 705790409
1497
+ section_id: 850927283
1498
+ parent_id: 401831715
1499
+ rgroup_id: 1646863488
1500
+ wgroup_id: 1646863488
1501
+ dgroup_id: 1646863488
1502
+ project_id: 850927283
1503
+ user_id: 1732729804
1504
+ created_at: 2006-03-10
1505
+ updated_at: 2006-04-11
1506
+ ref_lang: en
1507
+ name: secret
1508
+ type: Project
1509
+ kpath: NPP
1510
+ zip: 19
1511
+ publish_from: 2006-03-10
1512
+ vhash: '{"w":{"en":795315396},"r":{"en":795315396}}'
1513
+ inherit: no
1514
+ skin: default
1515
+ fullpath: projects/secret
1516
+ basepath: ""
1517
+
1518
+
1519
+ zena_proposition:
1520
+ id: 1079105465
1521
+ site_id: 705790409
1522
+ section_id: 850927283
1523
+ parent_id: 1893293733
1524
+ rgroup_id: 1646863488
1525
+ wgroup_id: 1646863488
1526
+ dgroup_id: 1646863488
1527
+ project_id: 1893293733
1528
+ user_id: 440568585
1529
+ created_at: 2006-03-10
1530
+ updated_at: 2006-04-11
1531
+ inherit: yes
1532
+ ref_lang: en
1533
+ name: proposition
1534
+ type: Note
1535
+ vclass_id: 1645305032
1536
+ kpath: NNP
1537
+ zip: 20
1538
+ publish_from: 2006-03-10
1539
+ vhash: '{"w":{"en":863633136},"r":{"en":863633136}}'
1540
+ inherit: yes
1541
+ skin: default
1542
+ fullpath: projects/secret/proposition
1543
+ basepath: ""
1544
+ event_at: 2006-04-05
1545
+ log_at: 2006-04-05
1546
+
1547
+
1548
+ zena_cleanWater:
1549
+ id: 1765350615
1550
+ site_id: 705790409
1551
+ section_id: 850927283
1552
+ parent_id: 401831715
1553
+ rgroup_id: 399480925
1554
+ wgroup_id: 962230129
1555
+ dgroup_id: 1646863488
1556
+ project_id: 850927283
1557
+ user_id: 1732729804
1558
+ created_at: 2006-03-10
1559
+ updated_at: 2006-04-11
1560
+ inherit: yes
1561
+ ref_lang: en
1562
+ name: cleanWater
1563
+ type: Project
1564
+ kpath: NPP
1565
+ zip: 21
1566
+ publish_from: 2006-03-10
1567
+ vhash: '{"w":{"en":441974556},"r":{"en":441974556}}'
1568
+ inherit: yes
1569
+ skin: default
1570
+ fullpath: projects/cleanWater
1571
+ basepath: projects/cleanWater
1572
+ custom_base: true
1573
+
1574
+
1575
+ zena_status:
1576
+ id: 1467732830
1577
+ site_id: 705790409
1578
+ section_id: 850927283
1579
+ parent_id: 1765350615
1580
+ rgroup_id: 399480925
1581
+ wgroup_id: 962230129
1582
+ dgroup_id: 1646863488
1583
+ project_id: 1765350615
1584
+ user_id: 440568585
1585
+ created_at: 2006-03-10
1586
+ updated_at: 2006-04-11
1587
+ inherit: yes
1588
+ ref_lang: en
1589
+ name: status
1590
+ type: Page
1591
+ kpath: NP
1592
+ zip: 22
1593
+ publish_from: 2006-03-10
1594
+ vhash: '{"w":{"fr":481030130,"en":596107390},"r":{"fr":481030130,"en":596107390}}'
1595
+ inherit: yes
1596
+ skin: default
1597
+ fullpath: projects/cleanWater/status
1598
+ basepath: projects/cleanWater
1599
+
1600
+
1601
+ zena_lake:
1602
+ id: 987336304
1603
+ site_id: 705790409
1604
+ section_id: 850927283
1605
+ parent_id: 1765350615
1606
+ rgroup_id: 399480925
1607
+ wgroup_id: 962230129
1608
+ dgroup_id: 1646863488
1609
+ project_id: 1765350615
1610
+ user_id: 440568585
1611
+ created_at: 2006-03-10
1612
+ updated_at: 2006-04-11
1613
+ inherit: yes
1614
+ ref_lang: en
1615
+ type: Contact
1616
+ kpath: NRC
1617
+ zip: 23
1618
+ publish_from: Thu Oct 15 18:31:52 +0000 2009
1619
+ vhash: '{"w":{"en":1833724126},"r":{"en":618648829}}'
1620
+ inherit: yes
1621
+ skin: default
1622
+ fullpath: projects/cleanWater/lakeAddress
1623
+ basepath: projects/cleanWater
1624
+ name: lakeAddress
1625
+
1626
+
1627
+ zena_lake_jpg:
1628
+ id: 501297889
1629
+ site_id: 705790409
1630
+ section_id: 850927283
1631
+ parent_id: 1765350615
1632
+ rgroup_id: 399480925
1633
+ wgroup_id: 962230129
1634
+ dgroup_id: 1646863488
1635
+ project_id: 1765350615
1636
+ user_id: 440568585
1637
+ created_at: 2006-03-10
1638
+ updated_at: 2006-04-11
1639
+ inherit: yes
1640
+ ref_lang: en
1641
+ type: Image
1642
+ kpath: NDI
1643
+ zip: 24
1644
+ publish_from: 2006-03-10
1645
+ vhash: '{"w":{"en":947674936},"r":{"en":947674936}}'
1646
+ inherit: yes
1647
+ skin: default
1648
+ fullpath: projects/cleanWater/lake
1649
+ basepath: projects/cleanWater
1650
+ name: lake
1651
+
1652
+
1653
+ zena_water_pdf:
1654
+ id: 1263114323
1655
+ site_id: 705790409
1656
+ section_id: 850927283
1657
+ parent_id: 1765350615
1658
+ rgroup_id: 399480925
1659
+ wgroup_id: 962230129
1660
+ dgroup_id: 1646863488
1661
+ project_id: 1765350615
1662
+ user_id: 1732729804
1663
+ created_at: 2006-03-10
1664
+ updated_at: 2006-04-11
1665
+ inherit: yes
1666
+ ref_lang: en
1667
+ type: Document
1668
+ kpath: ND
1669
+ zip: 25
1670
+ publish_from: 2006-03-10
1671
+ vhash: '{"w":{"en":1937858578},"r":{"en":1937858578}}'
1672
+ inherit: yes
1673
+ skin: default
1674
+ fullpath: projects/cleanWater/water
1675
+ basepath: projects/cleanWater
1676
+ name: water
1677
+
1678
+
1679
+ zena_crocodiles:
1680
+ id: 104821654
1681
+ site_id: 705790409
1682
+ section_id: 850927283
1683
+ parent_id: 1765350615
1684
+ rgroup_id: 399480925
1685
+ wgroup_id: 962230129
1686
+ dgroup_id: 1646863488
1687
+ project_id: 1765350615
1688
+ user_id: 1732729804
1689
+ inherit: yes
1690
+ ref_lang: en
1691
+ name: crocodiles
1692
+ type: Page
1693
+ kpath: NP
1694
+ zip: 26
1695
+ vhash: '{"w":{"en":1640734830},"r":{}}'
1696
+ inherit: yes
1697
+ skin: default
1698
+ fullpath: projects/cleanWater/crocodiles
1699
+ basepath: projects/cleanWater
1700
+ created_at: 2006-04-11
1701
+ updated_at: 2007-04-11
1702
+
1703
+
1704
+ zena_opening:
1705
+ id: 256040563
1706
+ site_id: 705790409
1707
+ section_id: 850927283
1708
+ parent_id: 1765350615
1709
+ rgroup_id: 399480925
1710
+ wgroup_id: 962230129
1711
+ dgroup_id: 1646863488
1712
+ project_id: 1765350615
1713
+ user_id: 1732729804
1714
+ created_at: 2006-03-10
1715
+ updated_at: 2006-04-11
1716
+ inherit: yes
1717
+ name: opening
1718
+ type: Note
1719
+ vclass_id: 1645305032
1720
+ kpath: NNP
1721
+ zip: 27
1722
+ publish_from: 2006-03-10
1723
+ vhash: '{"w":{"fr":237333418,"en":2080341258},"r":{"fr":1154708102,"en":2080341258}}'
1724
+ inherit: yes
1725
+ skin: default
1726
+ fullpath: projects/cleanWater/opening
1727
+ basepath: projects/cleanWater
1728
+ ref_lang: fr
1729
+ log_at: 2006-03-15
1730
+ event_at: 2006-03-18 15:00
1731
+
1732
+
1733
+ zena_bananas:
1734
+ id: 295801341
1735
+ site_id: 705790409
1736
+ section_id: 850927283
1737
+ parent_id: 1765350615
1738
+ rgroup_id: 1646863488
1739
+ wgroup_id: 1646863488
1740
+ dgroup_id: 1646863488
1741
+ project_id: 1765350615
1742
+ user_id: 1608342591
1743
+ created_at: 2006-03-10
1744
+ updated_at: 2006-04-11
1745
+ ref_lang: en
1746
+ name: bananas
1747
+ type: Page
1748
+ kpath: NP
1749
+ zip: 28
1750
+ publish_from: 2007-03-10
1751
+ vhash: '{"w":{"en":1589029781},"r":{"en":1589029781}}'
1752
+ inherit: no
1753
+ skin: default
1754
+ fullpath: projects/cleanWater/bananas
1755
+ basepath: projects/cleanWater
1756
+
1757
+
1758
+ zena_wiki:
1759
+ id: 979649406
1760
+ site_id: 705790409
1761
+ section_id: 850927283
1762
+ parent_id: 401831715
1763
+ rgroup_id: 399480925
1764
+ wgroup_id: 399480925
1765
+ dgroup_id: 399480925
1766
+ project_id: 850927283
1767
+ user_id: 1608342591
1768
+ created_at: 2006-03-10
1769
+ updated_at: 2006-04-11
1770
+ ref_lang: en
1771
+ name: wiki
1772
+ type: Project
1773
+ kpath: NPP
1774
+ zip: 29
1775
+ publish_from: 2006-03-10
1776
+ vhash: '{"w":{"en":1736646941},"r":{"en":1736646941}}'
1777
+ inherit: no
1778
+ skin: wikiSkin
1779
+ fullpath: projects/wiki
1780
+ basepath: ""
1781
+
1782
+
1783
+ zena_bird_jpg:
1784
+ id: 574428247
1785
+ site_id: 705790409
1786
+ section_id: 850927283
1787
+ parent_id: 979649406
1788
+ rgroup_id: 399480925
1789
+ wgroup_id: 399480925
1790
+ dgroup_id: 399480925
1791
+ project_id: 979649406
1792
+ user_id: 687379048
1793
+ created_at: 2006-03-10
1794
+ updated_at: 2006-04-11
1795
+ inherit: yes
1796
+ ref_lang: en
1797
+ type: Image
1798
+ kpath: NDI
1799
+ zip: 30
1800
+ publish_from: 2006-03-10
1801
+ vhash: '{"w":{"en":890552433},"r":{"en":890552433}}'
1802
+ inherit: yes
1803
+ skin: wikiSkin
1804
+ fullpath: projects/wiki/bird
1805
+ basepath: ""
1806
+ name: bird
1807
+
1808
+
1809
+ zena_flower_jpg:
1810
+ id: 622604559
1811
+ site_id: 705790409
1812
+ section_id: 850927283
1813
+ parent_id: 979649406
1814
+ rgroup_id: 399480925
1815
+ wgroup_id: 399480925
1816
+ dgroup_id: 399480925
1817
+ project_id: 979649406
1818
+ user_id: 687379048
1819
+ created_at: 2006-03-10
1820
+ updated_at: 2006-04-11
1821
+ inherit: yes
1822
+ ref_lang: en
1823
+ type: Image
1824
+ kpath: NDI
1825
+ zip: 31
1826
+ publish_from: 2006-03-10
1827
+ vhash: '{"w":{"en":1927484785},"r":{"en":1927484785}}'
1828
+ inherit: yes
1829
+ skin: wikiSkin
1830
+ fullpath: projects/wiki/flower
1831
+ basepath: ""
1832
+ name: flower
1833
+
1834
+
1835
+ zena_collections:
1836
+ id: 1421461254
1837
+ site_id: 705790409
1838
+ section_id: 850927283
1839
+ parent_id: 850927283
1840
+ rgroup_id: 399480925
1841
+ wgroup_id: 962230129
1842
+ dgroup_id: 1646863488
1843
+ project_id: 850927283
1844
+ user_id: 1732729804
1845
+ created_at: 2006-03-10
1846
+ updated_at: 2006-04-11
1847
+ inherit: yes
1848
+ ref_lang: en
1849
+ name: collections
1850
+ type: Page
1851
+ kpath: NP
1852
+ zip: 32
1853
+ publish_from: 2006-03-10
1854
+ vhash: '{"w":{"en":451734460},"r":{"en":451734460}}'
1855
+ inherit: yes
1856
+ skin: default
1857
+ fullpath: collections
1858
+ basepath: ""
1859
+
1860
+
1861
+ zena_art:
1862
+ id: 126488855
1863
+ site_id: 705790409
1864
+ section_id: 850927283
1865
+ parent_id: 1421461254
1866
+ rgroup_id: 399480925
1867
+ wgroup_id: 962230129
1868
+ dgroup_id: 1646863488
1869
+ project_id: 850927283
1870
+ user_id: 1732729804
1871
+ created_at: 2006-03-10
1872
+ updated_at: 2006-04-11
1873
+ inherit: yes
1874
+ ref_lang: en
1875
+ name: art
1876
+ type: Page
1877
+ vclass_id: 1081816609
1878
+ kpath: NPT
1879
+ zip: 33
1880
+ publish_from: 2006-03-10
1881
+ vhash: '{"w":{"en":1816065353},"r":{"en":1816065353}}'
1882
+ inherit: yes
1883
+ skin: default
1884
+ fullpath: collections/art
1885
+ basepath: ""
1886
+
1887
+
1888
+ zena_news:
1889
+ id: 91883052
1890
+ site_id: 705790409
1891
+ section_id: 850927283
1892
+ parent_id: 1421461254
1893
+ rgroup_id: 399480925
1894
+ wgroup_id: 962230129
1895
+ dgroup_id: 1646863488
1896
+ project_id: 850927283
1897
+ user_id: 1732729804
1898
+ created_at: 2006-03-10
1899
+ updated_at: 2006-04-11
1900
+ inherit: yes
1901
+ ref_lang: en
1902
+ name: news
1903
+ type: Page
1904
+ vclass_id: 1081816609
1905
+ kpath: NPT
1906
+ zip: 34
1907
+ publish_from: 2006-03-10
1908
+ vhash: '{"w":{"en":2025059587},"r":{"en":2025059587}}'
1909
+ inherit: yes
1910
+ skin: default
1911
+ fullpath: collections/news
1912
+ basepath: ""
1913
+
1914
+
1915
+ zena_menu:
1916
+ id: 1705813481
1917
+ site_id: 705790409
1918
+ section_id: 850927283
1919
+ parent_id: 1421461254
1920
+ rgroup_id: 399480925
1921
+ wgroup_id: 962230129
1922
+ dgroup_id: 1646863488
1923
+ project_id: 850927283
1924
+ user_id: 1732729804
1925
+ created_at: 2006-03-10
1926
+ updated_at: 2006-04-11
1927
+ inherit: yes
1928
+ ref_lang: en
1929
+ name: menu
1930
+ type: Page
1931
+ vclass_id: 1081816609
1932
+ kpath: NPT
1933
+ zip: 35
1934
+ publish_from: 2006-03-10
1935
+ vhash: '{"w":{"en":29377969},"r":{"en":29377969}}'
1936
+ inherit: yes
1937
+ skin: default
1938
+ fullpath: collections/menu
1939
+ basepath: ""
1940
+ log_at: 2007-05-20
1941
+
1942
+
1943
+ zena_strange:
1944
+ id: 76414460
1945
+ site_id: 705790409
1946
+ section_id: 850927283
1947
+ parent_id: 1421461254
1948
+ rgroup_id: 1329663069
1949
+ wgroup_id: 1646863488
1950
+ dgroup_id: 962230129
1951
+ project_id: 850927283
1952
+ user_id: 1608342591
1953
+ created_at: 2006-03-10
1954
+ updated_at: 2006-04-11
1955
+ ref_lang: en
1956
+ name: strange
1957
+ type: Page
1958
+ kpath: NP
1959
+ zip: 36
1960
+ vhash: '{"w":{"en":1153218855},"r":{}}'
1961
+ inherit: no
1962
+ skin: default
1963
+ fullpath: collections/strange
1964
+ basepath: ""
1965
+
1966
+
1967
+ zena_track:
1968
+ id: 296548749
1969
+ site_id: 705790409
1970
+ section_id: 850927283
1971
+ parent_id: 1765350615
1972
+ rgroup_id: 399480925
1973
+ wgroup_id: 962230129
1974
+ dgroup_id: 1646863488
1975
+ project_id: 1765350615
1976
+ user_id: 1732729804
1977
+ created_at: 2006-03-10
1978
+ updated_at: 2006-04-11
1979
+ inherit: yes
1980
+ ref_lang: en
1981
+ name: track
1982
+ type: Page
1983
+ vclass_id: 1655249283
1984
+ kpath: NPA
1985
+ zip: 37
1986
+ publish_from: 2006-03-10
1987
+ vhash: '{"w":{"en":1506959064},"r":{"en":1506959064}}'
1988
+ inherit: yes
1989
+ skin: default
1990
+ fullpath: projects/cleanWater/track
1991
+ basepath: projects/cleanWater
1992
+
1993
+
1994
+ zena_talk:
1995
+ id: 126700224
1996
+ site_id: 705790409
1997
+ section_id: 850927283
1998
+ parent_id: 1893293733
1999
+ rgroup_id: 399480925
2000
+ wgroup_id: 962230129
2001
+ dgroup_id: 962230129
2002
+ project_id: 1893293733
2003
+ user_id: 1732729804
2004
+ created_at: 2006-03-10
2005
+ updated_at: 2006-04-11
2006
+ ref_lang: en
2007
+ name: talk
2008
+ type: Page
2009
+ kpath: NP
2010
+ zip: 38
2011
+ publish_from: 2006-03-10
2012
+ vhash: '{"w":{"en":571583863},"r":{"en":571583863}}'
2013
+ inherit: no
2014
+ skin: default
2015
+ fullpath: projects/secret/talk
2016
+ basepath: ""
2017
+
2018
+
2019
+ zena_nature:
2020
+ id: 497235174
2021
+ site_id: 705790409
2022
+ section_id: 850927283
2023
+ parent_id: 850927283
2024
+ rgroup_id: 399480925
2025
+ wgroup_id: 962230129
2026
+ dgroup_id: 1646863488
2027
+ project_id: 850927283
2028
+ user_id: 440568585
2029
+ created_at: 2006-03-10
2030
+ updated_at: 2006-04-11
2031
+ inherit: yes
2032
+ name: nature
2033
+ type: Page
2034
+ kpath: NP
2035
+ zip: 39
2036
+ vhash: '{"w":{"en":1417835553},"r":{}}'
2037
+ inherit: yes
2038
+ skin: default
2039
+ fullpath: nature
2040
+ basepath: ""
2041
+ ref_lang: en
2042
+
2043
+
2044
+ zena_tree_jpg:
2045
+ id: 1585708893
2046
+ site_id: 705790409
2047
+ section_id: 850927283
2048
+ parent_id: 497235174
2049
+ rgroup_id: 399480925
2050
+ wgroup_id: 962230129
2051
+ dgroup_id: 1646863488
2052
+ project_id: 850927283
2053
+ user_id: 440568585
2054
+ created_at: 2006-03-10
2055
+ updated_at: 2006-04-11
2056
+ inherit: yes
2057
+ ref_lang: en
2058
+ type: Image
2059
+ kpath: NDI
2060
+ zip: 40
2061
+ vhash: '{"w":{"en":672308161},"r":{}}'
2062
+ inherit: yes
2063
+ skin: default
2064
+ fullpath: nature/tree
2065
+ basepath: ""
2066
+ name: tree
2067
+
2068
+
2069
+ zena_forest_pdf:
2070
+ id: 431583638
2071
+ site_id: 705790409
2072
+ section_id: 850927283
2073
+ parent_id: 497235174
2074
+ rgroup_id: 399480925
2075
+ wgroup_id: 962230129
2076
+ dgroup_id: 1646863488
2077
+ project_id: 850927283
2078
+ user_id: 440568585
2079
+ created_at: 2006-03-10
2080
+ updated_at: 2006-04-11
2081
+ inherit: yes
2082
+ ref_lang: en
2083
+ type: Document
2084
+ kpath: ND
2085
+ zip: 41
2086
+ vhash: '{"w":{"en":1432377919},"r":{}}'
2087
+ inherit: yes
2088
+ skin: default
2089
+ fullpath: nature/forest
2090
+ basepath: ""
2091
+ name: forest
2092
+
2093
+
2094
+ zena_letter:
2095
+ id: 578377803
2096
+ site_id: 705790409
2097
+ section_id: 850927283
2098
+ parent_id: 850927283
2099
+ rgroup_id: 399480925
2100
+ wgroup_id: 962230129
2101
+ dgroup_id: 1646863488
2102
+ project_id: 850927283
2103
+ user_id: 1732729804
2104
+ created_at: 2006-03-10
2105
+ updated_at: 2006-04-11
2106
+ inherit: yes
2107
+ ref_lang: en
2108
+ name: letter
2109
+ type: Note
2110
+ vclass_id: 634740093
2111
+ kpath: NNL
2112
+ zip: 42
2113
+ publish_from: 2006-03-10
2114
+ vhash: '{"w":{"en":223682533},"r":{"en":223682533}}'
2115
+ inherit: yes
2116
+ skin: default
2117
+ fullpath: letter
2118
+ basepath: ""
2119
+ event_at: 2008-01-10
2120
+ log_at: 2006-04-05
2121
+
2122
+
2123
+ zena_wiki_skin:
2124
+ id: 105639527
2125
+ site_id: 705790409
2126
+ section_id: 850927283
2127
+ parent_id: 1421461254
2128
+ rgroup_id: 399480925
2129
+ wgroup_id: 962230129
2130
+ dgroup_id: 1646863488
2131
+ project_id: 850927283
2132
+ user_id: 1732729804
2133
+ created_at: 2006-03-10
2134
+ updated_at: 2006-04-11
2135
+ inherit: yes
2136
+ ref_lang: en
2137
+ type: Skin
2138
+ kpath: NPSS
2139
+ zip: 43
2140
+ publish_from: 2006-03-10
2141
+ vhash: '{"w":{"en":1200132684},"r":{"en":1200132684}}'
2142
+ inherit: yes
2143
+ skin: default
2144
+ fullpath: collections/wikiSkin
2145
+ basepath: ""
2146
+ name: wikiSkin
2147
+ # yes it's not good to have this here but changing it would mess up many tests.
2148
+
2149
+
2150
+ zena_wiki_Project_changes_xml_zafu:
2151
+ id: 2119357477
2152
+ site_id: 705790409
2153
+ section_id: 105639527
2154
+ parent_id: 105639527
2155
+ rgroup_id: 399480925
2156
+ wgroup_id: 962230129
2157
+ dgroup_id: 1646863488
2158
+ project_id: 850927283
2159
+ user_id: 1732729804
2160
+ created_at: 2006-03-10
2161
+ updated_at: 2006-04-11
2162
+ inherit: yes
2163
+ ref_lang: en
2164
+ type: Template
2165
+ kpath: NDTT
2166
+ zip: 48
2167
+ publish_from: 2006-03-10
2168
+ vhash: '{"w":{"en":739891734},"r":{"en":739891734}}'
2169
+ inherit: yes
2170
+ skin: default
2171
+ fullpath: collections/wikiSkin/Project-changes-xml
2172
+ basepath: ""
2173
+ name: Project-changes-xml
2174
+
2175
+
2176
+ zena_wiki_Page_changes_zafu:
2177
+ id: 1859837825
2178
+ site_id: 705790409
2179
+ section_id: 105639527
2180
+ parent_id: 105639527
2181
+ rgroup_id: 399480925
2182
+ wgroup_id: 962230129
2183
+ dgroup_id: 1646863488
2184
+ project_id: 850927283
2185
+ user_id: 1732729804
2186
+ created_at: 2006-03-10
2187
+ updated_at: 2006-04-11
2188
+ inherit: yes
2189
+ ref_lang: en
2190
+ type: Template
2191
+ kpath: NDTT
2192
+ zip: 49
2193
+ publish_from: 2006-03-10
2194
+ vhash: '{"w":{"en":1649183139},"r":{"en":1649183139}}'
2195
+ inherit: yes
2196
+ skin: default
2197
+ fullpath: collections/wikiSkin/Page-changes
2198
+ basepath: ""
2199
+ name: Page-changes
2200
+
2201
+
2202
+ zena_wiki_Node_zafu:
2203
+ id: 1138644492
2204
+ site_id: 705790409
2205
+ section_id: 105639527
2206
+ parent_id: 105639527
2207
+ rgroup_id: 399480925
2208
+ wgroup_id: 962230129
2209
+ dgroup_id: 1646863488
2210
+ project_id: 850927283
2211
+ user_id: 1732729804
2212
+ created_at: 2006-03-10
2213
+ updated_at: 2006-04-11
2214
+ inherit: yes
2215
+ ref_lang: en
2216
+ type: Template
2217
+ kpath: NDTT
2218
+ zip: 50
2219
+ publish_from: 2006-03-10
2220
+ vhash: '{"w":{"en":1971416805},"r":{"en":1971416805}}'
2221
+ inherit: yes
2222
+ skin: default
2223
+ fullpath: collections/wikiSkin/Node
2224
+ basepath: ""
2225
+ name: Node
2226
+
2227
+
2228
+
2229
+
2230
+
2231
+ zena_skins:
2232
+ id: 642550315
2233
+ site_id: 705790409
2234
+ section_id: 850927283
2235
+ parent_id: 850927283
2236
+ rgroup_id: 399480925
2237
+ wgroup_id: 962230129
2238
+ dgroup_id: 1646863488
2239
+ project_id: 850927283
2240
+ user_id: 1732729804
2241
+ created_at: 2006-03-10
2242
+ updated_at: 2006-04-11
2243
+ inherit: yes
2244
+ ref_lang: en
2245
+ name: skins
2246
+ type: Page
2247
+ kpath: NP
2248
+ zip: 51
2249
+ publish_from: 2006-03-10
2250
+ vhash: '{"w":{"en":541046656},"r":{"en":541046656}}'
2251
+ inherit: yes
2252
+ skin: default
2253
+ fullpath: skins
2254
+ basepath: ""
2255
+
2256
+
2257
+ zena_default:
2258
+ id: 1646856816
2259
+ site_id: 705790409
2260
+ section_id: 850927283
2261
+ parent_id: 642550315
2262
+ rgroup_id: 399480925
2263
+ wgroup_id: 962230129
2264
+ dgroup_id: 1646863488
2265
+ project_id: 850927283
2266
+ user_id: 1732729804
2267
+ created_at: 2006-03-10
2268
+ updated_at: 2006-04-11
2269
+ inherit: yes
2270
+ ref_lang: en
2271
+ type: Skin
2272
+ kpath: NPSS
2273
+ zip: 52
2274
+ publish_from: 2006-03-10
2275
+ vhash: '{"w":{"en":1375182652},"r":{"en":1375182652}}'
2276
+ inherit: yes
2277
+ skin: default
2278
+ fullpath: skins/default
2279
+ basepath: ""
2280
+ name: default
2281
+
2282
+
2283
+ zena_Node_search_zafu:
2284
+ id: 1208112073
2285
+ site_id: 705790409
2286
+ section_id: 1646856816
2287
+ parent_id: 1646856816
2288
+ rgroup_id: 399480925
2289
+ wgroup_id: 962230129
2290
+ dgroup_id: 1646863488
2291
+ project_id: 850927283
2292
+ user_id: 1732729804
2293
+ created_at: 2006-03-10
2294
+ updated_at: 2006-04-11
2295
+ inherit: yes
2296
+ ref_lang: en
2297
+ type: Template
2298
+ kpath: NDTT
2299
+ zip: 53
2300
+ publish_from: 2006-03-10
2301
+ vhash: '{"w":{"en":1271374111},"r":{"en":1271374111}}'
2302
+ inherit: yes
2303
+ skin: default
2304
+ fullpath: skins/default/Node-search
2305
+ basepath: ""
2306
+ name: Node-search
2307
+
2308
+
2309
+ zena_style_css:
2310
+ id: 1087959263
2311
+ site_id: 705790409
2312
+ section_id: 1646856816
2313
+ parent_id: 1646856816
2314
+ rgroup_id: 399480925
2315
+ wgroup_id: 962230129
2316
+ dgroup_id: 1646863488
2317
+ project_id: 850927283
2318
+ user_id: 1732729804
2319
+ created_at: 2006-03-10
2320
+ updated_at: 2006-04-11
2321
+ inherit: yes
2322
+ ref_lang: en
2323
+ type: TextDocument
2324
+ kpath: NDT
2325
+ zip: 53
2326
+ publish_from: 2006-03-10
2327
+ vhash: '{"w":{"en":809544244},"r":{"en":809544244}}'
2328
+ inherit: yes
2329
+ skin: default
2330
+ fullpath: skins/default/style
2331
+ basepath: ""
2332
+ name: style
2333
+
2334
+
2335
+ zena_Node_zafu:
2336
+ id: 1046363781
2337
+ site_id: 705790409
2338
+ section_id: 1646856816
2339
+ parent_id: 1646856816
2340
+ rgroup_id: 399480925
2341
+ wgroup_id: 962230129
2342
+ dgroup_id: 1646863488
2343
+ project_id: 850927283
2344
+ user_id: 1732729804
2345
+ created_at: 2006-03-10
2346
+ updated_at: 2006-04-11
2347
+ inherit: yes
2348
+ ref_lang: en
2349
+ type: Template
2350
+ kpath: NDTT
2351
+ zip: 54
2352
+ publish_from: 2006-03-10
2353
+ vhash: '{"w":{"en":13229561},"r":{"en":13229561}}'
2354
+ inherit: yes
2355
+ skin: default
2356
+ fullpath: skins/default/Node
2357
+ basepath: ""
2358
+ name: Node
2359
+
2360
+
2361
+ zena_Node_admin_layout_zafu:
2362
+ id: 416273788
2363
+ site_id: 705790409
2364
+ section_id: 1646856816
2365
+ parent_id: 1646856816
2366
+ rgroup_id: 399480925
2367
+ wgroup_id: 962230129
2368
+ dgroup_id: 1646863488
2369
+ project_id: 850927283
2370
+ user_id: 1732729804
2371
+ created_at: 2006-03-10
2372
+ updated_at: 2006-04-11
2373
+ inherit: yes
2374
+ ref_lang: en
2375
+ type: Template
2376
+ kpath: NDTT
2377
+ zip: 55
2378
+ publish_from: 2006-03-10
2379
+ vhash: '{"w":{"en":6167670},"r":{"en":6167670}}'
2380
+ inherit: yes
2381
+ skin: default
2382
+ fullpath: skins/default/Node-+adminLayout
2383
+ basepath: ""
2384
+ name: Node-+adminLayout
2385
+
2386
+
2387
+ zena_Node_index_zafu:
2388
+ id: 1363116903
2389
+ site_id: 705790409
2390
+ section_id: 1646856816
2391
+ parent_id: 1646856816
2392
+ rgroup_id: 399480925
2393
+ wgroup_id: 962230129
2394
+ dgroup_id: 1646863488
2395
+ project_id: 850927283
2396
+ user_id: 1732729804
2397
+ created_at: 2006-03-10
2398
+ updated_at: 2006-04-11
2399
+ inherit: yes
2400
+ ref_lang: en
2401
+ type: Template
2402
+ kpath: NDTT
2403
+ zip: 56
2404
+ publish_from: 2006-03-10
2405
+ vhash: '{"w":{"en":1085485781},"r":{"en":1085485781}}'
2406
+ inherit: yes
2407
+ skin: default
2408
+ fullpath: skins/default/Node-+index
2409
+ basepath: ""
2410
+ name: Node-+index
2411
+
2412
+
2413
+ zena_Node_not_found_zafu:
2414
+ id: 724482651
2415
+ site_id: 705790409
2416
+ section_id: 1646856816
2417
+ parent_id: 1646856816
2418
+ rgroup_id: 399480925
2419
+ wgroup_id: 962230129
2420
+ dgroup_id: 1646863488
2421
+ project_id: 850927283
2422
+ user_id: 1732729804
2423
+ created_at: 2006-03-10
2424
+ updated_at: 2006-04-11
2425
+ inherit: yes
2426
+ ref_lang: en
2427
+ type: Template
2428
+ kpath: NDTT
2429
+ zip: 57
2430
+ publish_from: 2006-03-10
2431
+ vhash: '{"w":{"en":167150355},"r":{"en":167150355}}'
2432
+ inherit: yes
2433
+ skin: default
2434
+ fullpath: skins/default/Node-+notFound
2435
+ basepath: ""
2436
+ name: Node-+notFound
2437
+
2438
+
2439
+ zena_Node_popup_layout_zafu:
2440
+ id: 1747535511
2441
+ site_id: 705790409
2442
+ section_id: 1646856816
2443
+ parent_id: 1646856816
2444
+ rgroup_id: 399480925
2445
+ wgroup_id: 962230129
2446
+ dgroup_id: 1646863488
2447
+ project_id: 850927283
2448
+ user_id: 1732729804
2449
+ created_at: 2006-03-10
2450
+ updated_at: 2006-04-11
2451
+ inherit: yes
2452
+ ref_lang: en
2453
+ type: Template
2454
+ kpath: NDTT
2455
+ zip: 58
2456
+ publish_from: 2006-03-10
2457
+ vhash: '{"w":{"en":921484752},"r":{"en":921484752}}'
2458
+ inherit: yes
2459
+ skin: default
2460
+ fullpath: skins/default/Node-+popupLayout
2461
+ basepath: ""
2462
+ name: Node-+popupLayout
2463
+
2464
+
2465
+ zena_notes_zafu:
2466
+ id: 1183880165
2467
+ site_id: 705790409
2468
+ section_id: 1646856816
2469
+ parent_id: 1646856816
2470
+ rgroup_id: 399480925
2471
+ wgroup_id: 962230129
2472
+ dgroup_id: 1646863488
2473
+ project_id: 850927283
2474
+ user_id: 1732729804
2475
+ created_at: 2006-03-10
2476
+ updated_at: 2006-04-11
2477
+ inherit: yes
2478
+ ref_lang: en
2479
+ type: Template
2480
+ kpath: NDTT
2481
+ zip: 59
2482
+ publish_from: 2006-03-10
2483
+ vhash: '{"w":{"en":782848261},"r":{"en":782848261}}'
2484
+ inherit: yes
2485
+ skin: default
2486
+ fullpath: skins/default/notes
2487
+ basepath: ""
2488
+ name: notes
2489
+
2490
+
2491
+ zena_Node_test_zafu:
2492
+ id: 1578703466
2493
+ site_id: 705790409
2494
+ section_id: 1646856816
2495
+ parent_id: 1646856816
2496
+ rgroup_id: 399480925
2497
+ wgroup_id: 962230129
2498
+ dgroup_id: 1646863488
2499
+ project_id: 850927283
2500
+ user_id: 1732729804
2501
+ created_at: 2006-03-10
2502
+ updated_at: 2006-04-11
2503
+ inherit: yes
2504
+ ref_lang: en
2505
+ type: Template
2506
+ kpath: NDTT
2507
+ zip: 60
2508
+ publish_from: 2006-03-10
2509
+ vhash: '{"w":{"en":1541118758},"r":{"en":1541118758}}'
2510
+ inherit: yes
2511
+ skin: default
2512
+ fullpath: skins/default/Node-test
2513
+ basepath: ""
2514
+ name: Node-test
2515
+
2516
+
2517
+ zena_Project_zafu:
2518
+ id: 1768211301
2519
+ site_id: 705790409
2520
+ section_id: 1646856816
2521
+ parent_id: 1646856816
2522
+ rgroup_id: 399480925
2523
+ wgroup_id: 962230129
2524
+ dgroup_id: 1646863488
2525
+ project_id: 850927283
2526
+ user_id: 1732729804
2527
+ created_at: 2006-03-10
2528
+ updated_at: 2006-04-11
2529
+ inherit: yes
2530
+ ref_lang: en
2531
+ type: Template
2532
+ kpath: NDTT
2533
+ zip: 61
2534
+ publish_from: 2006-03-10
2535
+ vhash: '{"w":{"en":1312115533},"r":{"en":1312115533}}'
2536
+ inherit: yes
2537
+ skin: default
2538
+ fullpath: skins/default/Project
2539
+ basepath: ""
2540
+ name: Project
2541
+
2542
+
2543
+ zena_Node_login_zafu:
2544
+ id: 1020121201
2545
+ site_id: 705790409
2546
+ section_id: 1646856816
2547
+ parent_id: 1646856816
2548
+ rgroup_id: 399480925
2549
+ wgroup_id: 962230129
2550
+ dgroup_id: 1646863488
2551
+ project_id: 850927283
2552
+ user_id: 1732729804
2553
+ created_at: 2006-03-10
2554
+ updated_at: 2006-04-11
2555
+ inherit: yes
2556
+ ref_lang: en
2557
+ type: Template
2558
+ kpath: NDTT
2559
+ zip: 62
2560
+ publish_from: 2006-03-10
2561
+ vhash: '{"w":{"en":440234204},"r":{"en":440234204}}'
2562
+ inherit: yes
2563
+ skin: default
2564
+ fullpath: skins/default/Node-+login
2565
+ basepath: ""
2566
+ name: Node-+login
2567
+
2568
+
2569
+ zena_translations:
2570
+ id: 1902673252
2571
+ site_id: 705790409
2572
+ section_id: 1646856816
2573
+ parent_id: 1646856816
2574
+ rgroup_id: 399480925
2575
+ wgroup_id: 962230129
2576
+ dgroup_id: 1646863488
2577
+ project_id: 850927283
2578
+ user_id: 1732729804
2579
+ created_at: 2006-03-10
2580
+ updated_at: 2006-04-11
2581
+ inherit: yes
2582
+ ref_lang: en
2583
+ name: translations
2584
+ type: TextDocument
2585
+ kpath: NDT
2586
+ zip: 63
2587
+ publish_from: 2006-03-10
2588
+ vhash: '{"w":{"fr":107280376,"de":931205298},"r":{"fr":107280376,"de":931205298}}'
2589
+ inherit: yes
2590
+ skin: default
2591
+ fullpath: skins/default/translations
2592
+ basepath: ""