zena 0.15.2 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (284) hide show
  1. data/.gitignore +20 -0
  2. data/CREDITS +27 -0
  3. data/Capfile +3 -0
  4. data/DEVELOPERS +46 -0
  5. data/History.txt +15 -0
  6. data/MIT-LICENSE +19 -0
  7. data/Rakefile +44 -0
  8. data/TODO +24 -0
  9. data/TODO_ZENA_1_0 +23 -0
  10. data/app/controllers/application_controller.rb +3 -0
  11. data/app/controllers/documents_controller.rb +22 -56
  12. data/app/controllers/nodes_controller.rb +42 -27
  13. data/app/controllers/pings_controller.rb +19 -0
  14. data/app/controllers/relations_controller.rb +5 -1
  15. data/app/controllers/sites_controller.rb +1 -46
  16. data/app/controllers/user_sessions_controller.rb +47 -0
  17. data/app/controllers/users_controller.rb +1 -0
  18. data/app/controllers/versions_controller.rb +25 -7
  19. data/app/controllers/virtual_classes_controller.rb +1 -1
  20. data/app/helpers/application_helper.rb +1 -1
  21. data/app/models/comment.rb +2 -1
  22. data/app/models/contact_content.rb +2 -2
  23. data/app/models/data_entry.rb +5 -6
  24. data/app/models/document.rb +14 -10
  25. data/app/models/document_content.rb +4 -6
  26. data/app/models/iformat.rb +2 -2
  27. data/app/models/image_content.rb +6 -9
  28. data/app/models/node.rb +106 -164
  29. data/app/models/page.rb +0 -20
  30. data/app/models/site.rb +42 -12
  31. data/app/models/template.rb +3 -8
  32. data/app/models/template_content.rb +2 -0
  33. data/app/models/text_document.rb +13 -8
  34. data/app/models/user.rb +47 -100
  35. data/app/models/user_session.rb +4 -0
  36. data/app/models/version.rb +1 -1
  37. data/app/views/comments/create.rjs +3 -3
  38. data/app/views/comments/edit.rjs +1 -1
  39. data/app/views/comments/update.rjs +1 -1
  40. data/app/views/nodes/_import_results.rhtml +1 -1
  41. data/app/views/nodes/create.rjs +3 -3
  42. data/app/views/templates/document_create_tabs/_file.rhtml +1 -2
  43. data/app/views/templates/document_create_tabs/_import.rhtml +7 -2
  44. data/app/views/templates/edit_tabs/_document.rhtml +1 -3
  45. data/app/views/templates/edit_tabs/_image.rhtml +1 -3
  46. data/app/views/versions/_tr.rhtml +1 -1
  47. data/app/views/versions/edit.rhtml +2 -26
  48. data/bin/zena +6 -1
  49. data/bricks/delayed_job/README +18 -0
  50. data/bricks/delayed_job/migrate/20091104191643_create_delayed_jobs_table.rb +19 -0
  51. data/bricks/delayed_job/misc/init.rb +8 -0
  52. data/bricks/delayed_job/misc/tasks.rb +2 -0
  53. data/bricks/math/patch/application_helper.rb +1 -1
  54. data/bricks/sphinx/MIT-LICENSE +19 -0
  55. data/bricks/sphinx/README +19 -0
  56. data/bricks/sphinx/lib/use_sphinx.rb +78 -0
  57. data/bricks/sphinx/migrate/20091102171258_add_delta_for_sphinx.rb +9 -0
  58. data/bricks/sphinx/misc/deploy.rb +20 -0
  59. data/bricks/sphinx/misc/sphinx.yml +12 -0
  60. data/bricks/sphinx/misc/tasks.rb +21 -0
  61. data/bricks/sphinx/patch/node.rb +8 -0
  62. data/bricks/tags/lib/has_tags.rb +5 -3
  63. data/bricks/tags/test/zafu/tags.yml +13 -1
  64. data/config/bricks.yml +35 -0
  65. data/config/deploy.rb +8 -1
  66. data/config/environment.rb +1 -1
  67. data/config/environments/production.rb +1 -1
  68. data/config/gems.yml +28 -5
  69. data/config/sphinx.yml +12 -0
  70. data/db/init/base/skins/default/Node-+popupLayout.zafu +1 -16
  71. data/db/migrate/20091026161708_add_persistence_token.rb +13 -0
  72. data/db/migrate/20091101184952_add_session_table.rb +16 -0
  73. data/db/migrate/20091123175137_add_single_access_token.rb +9 -0
  74. data/db/migrate/20091124161608_rebuild_fullpath.rb +11 -0
  75. data/db/schema.rb +21 -8
  76. data/doc/README_FOR_APP +24 -0
  77. data/doc/fixtures.graffle +19568 -0
  78. data/doc/fixtures.pdf +0 -0
  79. data/doc/template/LICENSE +184 -0
  80. data/doc/template/README +37 -0
  81. data/doc/template/allison.css +283 -0
  82. data/doc/template/allison.js +307 -0
  83. data/doc/template/allison.rb +260 -0
  84. data/doc/template/cache/BODY +588 -0
  85. data/doc/template/cache/CLASS_INDEX +4 -0
  86. data/doc/template/cache/CLASS_PAGE +1 -0
  87. data/doc/template/cache/FILE_INDEX +4 -0
  88. data/doc/template/cache/FILE_PAGE +1 -0
  89. data/doc/template/cache/FONTS +1 -0
  90. data/doc/template/cache/FR_INDEX_BODY +1 -0
  91. data/doc/template/cache/IMGPATH +1 -0
  92. data/doc/template/cache/INDEX +1 -0
  93. data/doc/template/cache/JAVASCRIPT +307 -0
  94. data/doc/template/cache/METHOD_INDEX +4 -0
  95. data/doc/template/cache/METHOD_LIST +1 -0
  96. data/doc/template/cache/SRC_PAGE +1 -0
  97. data/doc/template/cache/STYLE +283 -0
  98. data/doc/template/cache/URL +1 -0
  99. data/doc/zafu_changes.yml +29 -0
  100. data/lib/base_additions.rb +1 -1
  101. data/lib/bricks.rb +9 -0
  102. data/lib/bricks/loader.rb +86 -0
  103. data/lib/bricks/requirements_validation.rb +71 -0
  104. data/lib/tasks/zena.rake +42 -4
  105. data/lib/zafu/action.rb +285 -0
  106. data/lib/zafu/ajax.rb +93 -0
  107. data/lib/zafu/attributes.rb +117 -0
  108. data/lib/zafu/calendar.rb +159 -0
  109. data/lib/zafu/context.rb +330 -0
  110. data/lib/zafu/core/html.rb +102 -0
  111. data/lib/zafu/core/move_to_parser.rb +167 -0
  112. data/lib/zafu/dates.rb +58 -0
  113. data/lib/zafu/display.rb +502 -0
  114. data/lib/zafu/eval.rb +66 -0
  115. data/lib/zafu/experimental.rb +66 -0
  116. data/lib/zafu/i18n.rb +64 -0
  117. data/lib/zafu/meta.rb +25 -0
  118. data/lib/zafu/refactor.rb +73 -0
  119. data/lib/zafu/support/context.rb +265 -0
  120. data/lib/zafu/support/dom.rb +145 -0
  121. data/lib/zafu/support/erb.rb +62 -0
  122. data/lib/zafu/support/flow.rb +401 -0
  123. data/lib/zafu/support/forms.rb +461 -0
  124. data/lib/zafu/support/links.rb +306 -0
  125. data/lib/zafu_parser.rb +26 -2
  126. data/lib/zena.rb +34 -15
  127. data/lib/zena/acts/multiversion.rb +2 -2
  128. data/lib/zena/acts/secure.rb +41 -30
  129. data/lib/zena/app.rb +7 -10
  130. data/lib/zena/controller/test_case.rb +12 -7
  131. data/lib/zena/crypto_provider/initial.rb +15 -0
  132. data/lib/zena/db.rb +6 -1
  133. data/lib/zena/deploy.rb +34 -6
  134. data/lib/zena/deploy/logrotate_app.rhtml +9 -0
  135. data/lib/zena/deploy/logrotate_host.rhtml +34 -0
  136. data/lib/zena/deploy/template.rb +1 -9
  137. data/lib/zena/foxy_parser.rb +1 -1
  138. data/lib/zena/info.rb +3 -1
  139. data/lib/zena/migrator.rb +1 -1
  140. data/lib/zena/parser.rb +12 -4
  141. data/lib/zena/parser/zazen_rules.rb +6 -6
  142. data/lib/zena/parser/zena_rules.rb +1 -7
  143. data/lib/zena/routes.rb +5 -5
  144. data/lib/zena/test_controller.rb +7 -2
  145. data/lib/zena/unit/test_case.rb +6 -8
  146. data/lib/zena/use/ajax.rb +10 -10
  147. data/lib/zena/use/authlogic.rb +93 -0
  148. data/lib/zena/use/dyn_attributes.rb +5 -0
  149. data/lib/zena/use/html_tags.rb +16 -34
  150. data/lib/zena/use/i18n.rb +4 -1
  151. data/lib/zena/use/node_query_finders.rb +8 -4
  152. data/lib/zena/use/refactor.rb +8 -20
  153. data/lib/zena/use/relations.rb +1 -0
  154. data/lib/zena/use/rendering.rb +4 -2
  155. data/lib/zena/use/search.rb +52 -0
  156. data/lib/zena/use/test_helper.rb +27 -28
  157. data/lib/zena/use/upload.rb +188 -0
  158. data/lib/zena/use/urls.rb +16 -14
  159. data/lib/zena/use/zafu.rb +16 -63
  160. data/lib/zena/use/zazen.rb +8 -8
  161. data/lib/zena/view/test_case.rb +8 -4
  162. data/locale/en/LC_MESSAGES/zena.mo +0 -0
  163. data/locale/en/zena.po +3 -3
  164. data/public/.htaccess +40 -0
  165. data/public/javascripts/upload-progress.js +17 -8
  166. data/public/javascripts/zena.js +8 -2
  167. data/public/stylesheets/popup.css +1 -0
  168. data/script/about +3 -0
  169. data/script/apache_logging +25 -0
  170. data/script/breakpointer +3 -0
  171. data/script/console +3 -0
  172. data/script/dbconsole +3 -0
  173. data/script/destroy +3 -0
  174. data/script/generate +3 -0
  175. data/script/performance/benchmarker +3 -0
  176. data/script/performance/profiler +3 -0
  177. data/script/plugin +3 -0
  178. data/script/process/inspector +3 -0
  179. data/script/process/reaper +3 -0
  180. data/script/process/spawner +3 -0
  181. data/script/runner +3 -0
  182. data/script/server +3 -0
  183. data/script/set_revision +29 -0
  184. data/spec/controllers/versions_controller_spec.rb +11 -0
  185. data/test/fixtures/files/Node-test.zafu +1 -1
  186. data/test/functional/nodes_controller_test.rb +25 -0
  187. data/test/functional/pings_controller_test.rb +8 -0
  188. data/test/functional/user_sessions_controller_test.rb +59 -0
  189. data/test/functional/users_controller_test.rb +81 -19
  190. data/test/helpers/node_query/filters.yml +5 -0
  191. data/test/helpers/node_query_test.rb +3 -3
  192. data/test/integration/multiple_hosts_test.rb +1 -1
  193. data/test/integration/navigation_test.rb +1 -1
  194. data/test/sites/complex/users.yml +1 -1
  195. data/test/sites/ocean/users.yml +3 -3
  196. data/test/sites/zena/users.yml +5 -4
  197. data/test/test_zena.rb +38 -38
  198. data/test/unit/cached_page_test.rb +2 -2
  199. data/test/unit/comment_test.rb +0 -1
  200. data/test/unit/document_test.rb +23 -11
  201. data/test/unit/helpers/ping_helper_test.rb +4 -0
  202. data/test/unit/multiversion_test.rb +24 -16
  203. data/test/unit/node_test.rb +32 -93
  204. data/test/unit/note_test.rb +9 -0
  205. data/test/unit/page_test.rb +2 -2
  206. data/test/unit/secure_test.rb +2 -12
  207. data/test/unit/site_test.rb +43 -24
  208. data/test/unit/template_test.rb +45 -3
  209. data/test/unit/text_document_test.rb +4 -3
  210. data/test/unit/user_test.rb +13 -33
  211. data/test/unit/zena/db_test.rb +8 -0
  212. data/test/unit/zena/parser/zazen.yml +4 -4
  213. data/test/unit/zena/use/dates_view_methods_test.rb +2 -1
  214. data/test/unit/zena/use/html_tags_test.rb +12 -4
  215. data/test/unit/zena/use/refactor_test.rb +4 -3
  216. data/test/unit/zena/use/rendering_test.rb +1 -0
  217. data/test/unit/zena/use/upload_test.rb +76 -0
  218. data/test/unit/zena/use/urls_test.rb +4 -0
  219. data/test/unit/zena/use/zafu_test.rb +8 -0
  220. data/test/unit/zena/workflow/status_version_test.rb +6 -0
  221. data/test/unit/zena/zena_tags/ajax.yml +4 -4
  222. data/test/unit/zena/zena_tags/basic.yml +21 -10
  223. data/test/unit/zena/zena_tags/relations.yml +0 -6
  224. data/test/unit/zena/zena_tags/rubyless.yml +35 -0
  225. data/test/unit/zena/zena_tags/zazen.yml +4 -4
  226. data/test/unit/zena/zena_tags_test.rb +36 -4
  227. data/vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand +1 -1
  228. data/vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand +2 -3
  229. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/catch_exception.rb +39 -0
  230. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb +102 -58
  231. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/stdin_dialog.rb +14 -0
  232. data/vendor/TextMate/Zena.tmbundle/info.plist +2 -0
  233. data/zena.gemspec +2085 -0
  234. metadata +265 -90
  235. data/app/controllers/sessions_controller.rb +0 -41
  236. data/app/views/sites/zena_up.html.erb +0 -11
  237. data/config/database.yml +0 -40
  238. data/db/production.sqlite3 +0 -0
  239. data/lib/bricks/patcher.rb +0 -68
  240. data/lib/zena/parser/zena_tags.rb +0 -3562
  241. data/lib/zena/use/authentification.rb +0 -120
  242. data/public/images/ext/contact_pv.png +0 -0
  243. data/public/images/ext/other_pv.png +0 -0
  244. data/public/images/ext/page_pv.png +0 -0
  245. data/public/images/ext/page_tiny.png +0 -0
  246. data/public/images/ext/pdf_pv.png +0 -0
  247. data/public/images/ext/post_pv.png +0 -0
  248. data/public/images/ext/post_tiny.png +0 -0
  249. data/public/images/ext/project_pv.png +0 -0
  250. data/public/images/ext/project_tiny.png +0 -0
  251. data/public/images/ext/tag_pv.png +0 -0
  252. data/public/images/ext/zip_pv.png +0 -0
  253. data/tasks/ann.rake +0 -80
  254. data/tasks/bones.rake +0 -20
  255. data/tasks/gem.rake +0 -201
  256. data/tasks/git.rake +0 -40
  257. data/tasks/notes.rake +0 -27
  258. data/tasks/post_load.rake +0 -34
  259. data/tasks/rdoc.rake +0 -51
  260. data/tasks/rubyforge.rake +0 -55
  261. data/tasks/setup.rb +0 -292
  262. data/tasks/spec.rake +0 -54
  263. data/tasks/svn.rake +0 -47
  264. data/tasks/test.rake +0 -40
  265. data/tasks/zentest.rake +0 -36
  266. data/test/fixtures/comments.yml +0 -126
  267. data/test/fixtures/contact_contents.yml +0 -132
  268. data/test/fixtures/data_entries.yml +0 -65
  269. data/test/fixtures/discussions.yml +0 -48
  270. data/test/fixtures/document_contents.yml +0 -108
  271. data/test/fixtures/dyn_attributes.yml +0 -66
  272. data/test/fixtures/groups.yml +0 -86
  273. data/test/fixtures/groups_users.yml +0 -81
  274. data/test/fixtures/iformats.yml +0 -29
  275. data/test/fixtures/links.yml +0 -313
  276. data/test/fixtures/nodes.yml +0 -2592
  277. data/test/fixtures/relations.yml +0 -126
  278. data/test/fixtures/sites.yml +0 -58
  279. data/test/fixtures/template_contents.yml +0 -172
  280. data/test/fixtures/users.yml +0 -167
  281. data/test/fixtures/versions.yml +0 -1911
  282. data/test/fixtures/virtual_classes.yml +0 -87
  283. data/test/fixtures/zips.yml +0 -15
  284. data/test/functional/sessions_controller_test.rb +0 -73
@@ -1,2592 +0,0 @@
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: Wed Jan 06 11:21:14 +0000 2010
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: ""