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,164 @@
1
+ module Bricks
2
+ module Tags
3
+ class StringHash
4
+ include RubyLess::SafeClass
5
+ safe_method [:[], String] => {:class => String, :nil => true}
6
+ end
7
+
8
+ module HasTags
9
+ # this is called when the module is included into the 'base' module
10
+ def self.included(base)
11
+ base.extend Bricks::Tags::TriggerClassMethod
12
+ end
13
+ end
14
+
15
+ module TriggerClassMethod
16
+ def has_tags
17
+ after_save :update_tags
18
+ zafu_context :tags => ["Link"]
19
+ safe_method :tag_list => String, :tag => String, :tagged => StringHash
20
+
21
+ class_eval <<-END
22
+ include Bricks::Tags::InstanceMethods
23
+ class << self
24
+ include Bricks::Tags::ClassMethods
25
+ end
26
+ END
27
+ end
28
+ end
29
+
30
+ module ClassMethods
31
+
32
+ end
33
+
34
+ module InstanceMethods
35
+
36
+ def l_tag
37
+ l_comment
38
+ end
39
+
40
+ # Used by multiversion to remove attributes with same value.
41
+ def tag
42
+ nil
43
+ end
44
+
45
+ def tagged
46
+ @tagged ||= Hash[*tag_names.map {|t| [t,t]}.flatten]
47
+ end
48
+
49
+ # Set/unset a named tag
50
+ def tagged=(hash)
51
+ # named tags
52
+ hash.each do |k, v|
53
+ if v.empty?
54
+ remove_tag(k.to_s)
55
+ else
56
+ add_tag(k.to_s)
57
+ end
58
+ end
59
+ end
60
+
61
+ # Add a new tag
62
+ def tag=(v)
63
+ tag_names_to_add, tag_names_to_remove = [], []
64
+ tags_as_list(v).each do |t|
65
+ if t[0..0] == '-'
66
+ remove_tag(t[1..-1])
67
+ else
68
+ add_tag(t)
69
+ end
70
+ end
71
+ end
72
+
73
+ # String listing the tags separated by a comma.
74
+ def tag_list
75
+ tag_names.join(', ')
76
+ end
77
+
78
+ # Define tag list from a comma separated list of tag names.
79
+ def tag_list=(v)
80
+ @tag_names = tags_as_list(v)
81
+ end
82
+
83
+ # List of tag names.
84
+ def tag_names
85
+ @tag_names ||= (tags || []).map {|t| t[:comment]}
86
+ end
87
+
88
+ # List of Links that are tags for the current node.
89
+ def tags
90
+ return @tags if defined?(@tags)
91
+ @tags = begin
92
+ tags = Link.find(:all, :conditions => ["source_id = ? AND target_id IS NULL", self[:id]], :order => "comment ASC")
93
+ tags.each do |t|
94
+ t.start = self
95
+ end
96
+ tags == [] ? nil : tags
97
+ end
98
+ end
99
+
100
+ def add_tag(name)
101
+ return if tag_names.include?(name)
102
+ @tag_names << name
103
+ end
104
+
105
+ def remove_tag(name)
106
+ self.tag_names.delete(name)
107
+ end
108
+
109
+ # Overwrite 'remove_link' from 'has_relations'
110
+ def remove_link(link)
111
+ if link[:source_id] != self[:id] && link[:target_id] != self[:id]
112
+ errors.add('link', "not related to this node")
113
+ return false
114
+ end
115
+ if link[:relation_id]
116
+ # find proxy
117
+ if rel = relation_proxy_from_link(link)
118
+ rel.remove_link(link)
119
+ else
120
+ errors.add('link', "cannot remove (relation proxy not found).")
121
+ end
122
+ else
123
+ # tag
124
+ @del_tags ||= []
125
+ @del_tags << link
126
+ end
127
+ end
128
+
129
+
130
+ private
131
+
132
+ def tags_as_list(str)
133
+ str.split(',').map(&:strip).reject{|t| t.blank? }
134
+ end
135
+
136
+ # Update/create links defined in relation proxies
137
+ def update_tags
138
+ return unless @tag_names
139
+ old_tag_names = (self.tags || []).map {|t| t[:comment]}
140
+
141
+ tags_to_add = @tag_names - old_tag_names
142
+ tags_to_del = []
143
+ (self.tags || []).each do |t|
144
+ tags_to_del << t unless @tag_names.include?(t[:comment])
145
+ end
146
+
147
+ if tags_to_del != []
148
+ del_ids = tags_to_del.map {|t| t[:id]}
149
+ Link.connection.execute "DELETE FROM links WHERE id IN (#{del_ids.join(',')})"
150
+ end
151
+
152
+ if tags_to_add != []
153
+ add_tags = tags_to_add.map{|t| [self[:id], Link.connection.quote(t)]}
154
+ Zena::Db.insert_many('links', %W{source_id comment}, add_tags)
155
+ end
156
+ remove_instance_variable(:@tags) if @tags
157
+ @tag_names = nil
158
+ end
159
+
160
+ end
161
+ end
162
+ end
163
+
164
+ ActiveRecord::Base.send :include, Bricks::Tags::HasTags
@@ -0,0 +1,15 @@
1
+ unless defined?(Node.ancestors.include?('Zena::Use::Relations::ClassMethods')) # FIXME: not sure here
2
+ raise Exception.new("tags brick depends on 'Zena::Use::Relations'")
3
+ end
4
+ Node.send(:has_tags)
5
+
6
+ Link # make sure it is loaded before we reopen it
7
+ class Link
8
+ safe_method :name => {:class => String, :nil => true}
9
+
10
+ def name
11
+ self[:comment]
12
+ end
13
+ end
14
+
15
+ NodeQuery.add_filter_field('tag', :key => 'comment', :table => ['nodes', 'links', 'TABLE1.id = TABLE2.source_id AND TABLE2.relation_id IS NULL'])
@@ -0,0 +1,11 @@
1
+ status_tagged_blue:
2
+ source: status
3
+ comment: blue
4
+
5
+ status_tagged_sky:
6
+ source: status
7
+ comment: sky
8
+
9
+ bird_tagged_blue:
10
+ source: bird_jpg
11
+ comment: blue
@@ -0,0 +1,103 @@
1
+ require File.dirname(__FILE__) + '/../../../../test/test_helper'
2
+
3
+ class TagsTest < Zena::Unit::TestCase
4
+
5
+ def test_tag
6
+ login(:tiger)
7
+ node = secure!(Node) { nodes(:status) }
8
+ assert type = Node.safe_method_type(['tag'])
9
+ end
10
+
11
+ def test_tag_list
12
+ login(:tiger)
13
+ node = secure!(Node) { nodes(:status) }
14
+ assert_equal 'blue, sky', node.tag_list
15
+ end
16
+
17
+ def test_add_one_tag
18
+ login(:tiger)
19
+ node = secure!(Node) { nodes(:status) }
20
+ assert node.update_attributes(:tag => 'ugly')
21
+ assert_equal 'blue, sky, ugly', node.tag_list
22
+ node = secure!(Node) { nodes(:status) }
23
+ assert_equal 'blue, sky, ugly', node.tag_list
24
+ end
25
+
26
+ def test_add_remove_tagged
27
+ login(:tiger)
28
+ node = secure!(Node) { nodes(:status) }
29
+ assert node.update_attributes(:tagged => {:ugly => 'ugly', :foo => 'true', :sky => ''})
30
+ assert_equal 'blue, foo, ugly', node.tag_list
31
+ node = secure!(Node) { nodes(:status) }
32
+ assert_equal 'blue, foo, ugly', node.tag_list
33
+ end
34
+
35
+ def test_remove_one_tag
36
+ login(:tiger)
37
+ node = secure!(Node) { nodes(:status) }
38
+ assert node.update_attributes(:tag => '-sky')
39
+ assert_equal 'blue', node.tag_list
40
+ node = secure!(Node) { nodes(:status) }
41
+ assert_equal 'blue', node.tag_list
42
+ end
43
+
44
+ def test_tagged
45
+ login(:tiger)
46
+ node = secure!(Node) { nodes(:status) }
47
+ h = {"sky"=>"sky", "blue"=>"blue"}
48
+ assert_equal h, node.tagged
49
+ end
50
+
51
+ def test_remove_one_tag_using_empty_value
52
+ login(:tiger)
53
+ node = secure!(Node) { nodes(:status) }
54
+ assert node.update_attributes(:tagged => {:sky => ''})
55
+ assert_equal 'blue', node.tag_list
56
+ node = secure!(Node) { nodes(:status) }
57
+ assert_equal 'blue', node.tag_list
58
+ end
59
+
60
+ def test_remove_inexistant_tag
61
+ login(:tiger)
62
+ node = secure!(Node) { nodes(:status) }
63
+ assert node.update_attributes(:tag => '-ugly')
64
+ assert_equal 'blue, sky', node.tag_list
65
+ node = secure!(Node) { nodes(:status) }
66
+ assert_equal 'blue, sky', node.tag_list
67
+ end
68
+
69
+ def test_add_several_tags
70
+ login(:tiger)
71
+ node = secure!(Node) { nodes(:status) }
72
+ assert node.update_attributes(:tag => 'big, brown,socks')
73
+ node = secure!(Node) { nodes(:status) }
74
+ assert_equal 'big, blue, brown, sky, socks', node.tag_list
75
+ end
76
+
77
+ def test_remove_many_tags
78
+ login(:tiger)
79
+ node = secure!(Node) { nodes(:status) }
80
+ assert node.update_attributes(:tag => '-sky, -blue, ugly, -foobar')
81
+ assert_equal 'ugly', node.tag_list
82
+ node = secure!(Node) { nodes(:status) }
83
+ assert_equal 'ugly', node.tag_list
84
+ end
85
+
86
+ def test_add_remove
87
+ login(:tiger)
88
+ node = secure!(Node) { nodes(:status) }
89
+ assert node.update_attributes(:tag => '-sky, ugly, sky, -blue, -ugly, -foobar')
90
+ assert_equal 'sky', node.tag_list
91
+ node = secure!(Node) { nodes(:status) }
92
+ assert_equal 'sky', node.tag_list
93
+ end
94
+
95
+ def test_set_tag_list
96
+ login(:tiger)
97
+ node = secure!(Node) { nodes(:status) }
98
+ assert node.update_attributes(:tag_list => 'big, brown,socks')
99
+ node = secure!(Node) { nodes(:status) }
100
+ assert_equal 'big, brown, socks', node.tag_list
101
+ end
102
+
103
+ end
@@ -0,0 +1,28 @@
1
+ # test_file: ../../../../test/helpers/zena_parser_test.rb
2
+ default:
3
+ context:
4
+ node: 'status'
5
+ src: "<r:tags do='each' join=',' do='[name]'/>"
6
+ tem: "/list1 = @node.tags.*var1.name/"
7
+ res: "blue,sky"
8
+
9
+ listing_no_tags:
10
+ context:
11
+ node: 'lion'
12
+ src: "<r:tags>Nothing</r:tags>"
13
+ tem: "/list1 = @node.tags/"
14
+ res: ""
15
+
16
+ listing_with_link:
17
+ src: "<r:tags do='each' join=',' do='link' cat='[name]'/>"
18
+ res: "<a href='/oo/projects/cleanWater/page22.html?cat=blue'>blue</a>,<a href='/oo/projects/cleanWater/page22.html?cat=sky'>sky</a>"
19
+
20
+ tagged_query:
21
+ context:
22
+ cat: 'blue'
23
+ src: "<r:context select='nodes where tag = param:cat in site' do='each' join=', ' do='[name]'/>"
24
+ res: "bird, status"
25
+
26
+ images_tagged_blue:
27
+ src: "<r:images where='tag=\"blue\"' in='site' do='each' join=', ' do='[name]'/>"
28
+ res: "bird"
data/bricks/toto.zip ADDED
Binary file
@@ -0,0 +1,1497 @@
1
+ # AWSTATS CONFIGURE FILE 6.5
2
+ #-----------------------------------------------------------------------------
3
+ # Copy this file into awstats.www.mydomain.conf and edit this new config file
4
+ # to setup AWStats (See documentation in docs/ directory).
5
+ # The config file must be in /etc/awstats, /usr/local/etc/awstats or /etc (for
6
+ # Unix/Linux) or same directory than awstats.pl (Windows, Mac, Unix/Linux...)
7
+ # To include an environment variable in any parameter (AWStats will replace
8
+ # it with its value when reading it), follow the example:
9
+ # Parameter="__ENVNAME__"
10
+ # Note that environment variable AWSTATS_CURRENT_CONFIG is always defined with
11
+ # the config value in an AWStats running session and can be used like others.
12
+ #-----------------------------------------------------------------------------
13
+ # $Revision: 1.324 $ - $Author: eldy $ - $Date: 2005/10/30 15:56:38 $
14
+
15
+
16
+
17
+ #-----------------------------------------------------------------------------
18
+ # MAIN SETUP SECTION (Required to make AWStats work)
19
+ #-----------------------------------------------------------------------------
20
+
21
+ # "LogFile" contains the web, ftp or mail server log file to analyze.
22
+ # Possible values: A full path, or a relative path from awstats.pl directory.
23
+ # Example: "/var/log/apache/access.log"
24
+ # Example: "../logs/mycombinedlog.log"
25
+ # You can also use tags in this filename if you need a dynamic file name
26
+ # depending on date or time (Replacement is made by AWStats at the beginning
27
+ # of its execution). This is available tags :
28
+ # %YYYY-n is replaced with 4 digits year we were n hours ago
29
+ # %YY-n is replaced with 2 digits year we were n hours ago
30
+ # %MM-n is replaced with 2 digits month we were n hours ago
31
+ # %MO-n is replaced with 3 letters month we were n hours ago
32
+ # %DD-n is replaced with day we were n hours ago
33
+ # %HH-n is replaced with hour we were n hours ago
34
+ # %NS-n is replaced with number of seconds at 00:00 since 1970
35
+ # %WM-n is replaced with the week number in month (1-5)
36
+ # %Wm-n is replaced with the week number in month (0-4)
37
+ # %WY-n is replaced with the week number in year (01-52)
38
+ # %Wy-n is replaced with the week number in year (00-51)
39
+ # %DW-n is replaced with the day number in week (1-7, 1=sunday)
40
+ # use n=24 if you need (1-7, 1=monday)
41
+ # %Dw-n is replaced with the day number in week (0-6, 0=sunday)
42
+ # use n=24 if you need (0-6, 0=monday)
43
+ # Use 0 for n if you need current year, month, day, hour...
44
+ # Example: "/var/log/access_log.%YYYY-0%MM-0%DD-0.log"
45
+ # Example: "C:/WINNT/system32/LogFiles/W3SVC1/ex%YY-24%MM-24%DD-24.log"
46
+ # You can also use a pipe if log file come from a pipe :
47
+ # Example: "gzip -d </var/log/apache/access.log.gz |"
48
+ # If there is several log files from load balancing servers :
49
+ # Example: "/pathtotools/logresolvemerge.pl *.log |"
50
+ #
51
+ LogFile="/var/www/zena/<%= host %>/log/apache2.access.log"
52
+
53
+
54
+ # Enter the log file type you want to analyze.
55
+ # Possible values:
56
+ # W - For a web log file
57
+ # S - For a streaming log file
58
+ # M - For a mail log file
59
+ # F - For a ftp log file
60
+ # Example: W
61
+ # Default: W
62
+ #
63
+ LogType=W
64
+
65
+
66
+ # Enter here your log format (Must match your web server config. See setup
67
+ # instructions in documentation to know how to configure your web server to
68
+ # have the required log format).
69
+ # Possible values: 1,2,3,4 or "your_own_personalized_log_format"
70
+ # 1 - Apache or Lotus Notes/Domino native combined log format (NCSA combined/XLF/ELF log format)
71
+ # 2 - IIS or ISA format (IIS W3C log format). See FAQ-COM115 For ISA.
72
+ # 3 - Webstar native log format.
73
+ # 4 - Apache or Squid native common log format (NCSA common/CLF log format)
74
+ # With LogFormat=4, some features (browsers, os, keywords...) can't work.
75
+ # "your_own_personalized_log_format" = If your log is ftp, mail or other format,
76
+ # you must use following keys to define the log format string (See FAQ for
77
+ # ftp, mail or exotic web log format examples):
78
+ # %host Client hostname or IP address (or Sender host for mail log)
79
+ # %host_r Receiver hostname or IP address (for mail log)
80
+ # %lognamequot Authenticated login/user with format: "john"
81
+ # %logname Authenticated login/user with format: john
82
+ # %time1 Date and time with format: [dd/mon/yyyy:hh:mm:ss +0000] or [dd/mon/yyyy:hh:mm:ss]
83
+ # %time2 Date and time with format: yyyy-mm-dd hh:mm:ss
84
+ # %time3 Date and time with format: Mon dd hh:mm:ss or Mon dd hh:mm:ss yyyy
85
+ # %time4 Date and time with unix timestamp format: dddddddddd
86
+ # %methodurl Method and URL with format: "GET /index.html HTTP/x.x"
87
+ # %methodurlnoprot Method and URL with format: "GET /index.html"
88
+ # %method Method with format: GET
89
+ # %url URL only with format: /index.html
90
+ # %query Query string (used by URLWithQuery option)
91
+ # %code Return code status (with format for web log: 999)
92
+ # %bytesd Size of document in bytes
93
+ # %refererquot Referer page with format: "http://from.com/from.htm"
94
+ # %referer Referer page with format: http://from.com/from.htm
95
+ # %uabracket User agent with format: [Mozilla/4.0 (compatible, ...)]
96
+ # %uaquot User agent with format: "Mozilla/4.0 (compatible, ...)"
97
+ # %ua User agent with format: Mozilla/4.0_(compatible...)
98
+ # %gzipin mod_gzip compression input bytes: In:XXX
99
+ # %gzipout mod_gzip compression output bytes & ratio: Out:YYY:ZZpct.
100
+ # %gzipratio mod_gzip compression ratio: ZZpct.
101
+ # %deflateratio mod_deflate compression ratio with format: (ZZ)
102
+ # %email EMail sender (for mail log)
103
+ # %email_r EMail receiver (for mail log)
104
+ # %virtualname Web sever virtual hostname. Use this tag when same log
105
+ # contains data of several virtual web servers. AWStats
106
+ # will discard records not in SiteDomain nor HostAliases
107
+ # %cluster If log file is provided from several computers (merged by
108
+ # logresolvemerge.pl), use this to define cluster id field.
109
+ # %extraX Another field that you plan to use for building a
110
+ # personalized report with ExtraSection feature (See later).
111
+ # If your log format has some fields not included in this list, use:
112
+ # %other Means another not used field
113
+ # %otherquot Means another not used double quoted field
114
+ #
115
+ # Examples for Apache combined logs (following two examples are equivalent):
116
+ # LogFormat = 1
117
+ # LogFormat = "%host %other %logname %time1 %methodurl %code %bytesd %refererquot %uaquot"
118
+ #
119
+ # Example for IIS:
120
+ # LogFormat = 2
121
+ #
122
+ LogFormat=1
123
+
124
+
125
+ # If your log field's separator is not a space, you can change this parameter.
126
+ # This parameter is not used if LogFormat is a predefined value (1,2,3,4)
127
+ # Backslash can be used as escape character.
128
+ # Example: " "
129
+ # Example: "\t"
130
+ # Example: "\|"
131
+ # Example: ","
132
+ # Default: " "
133
+ #
134
+ LogSeparator=" "
135
+
136
+
137
+ # "SiteDomain" must contain the main domain name, or the main intranet web
138
+ # server name, used to reach the web site.
139
+ # If you share the same log file for several virtual web servers, this
140
+ # parameter is used to tell AWStats to filter record that contains records for
141
+ # this virtual host name only (So check that this virtual hostname can be
142
+ # found in your log file and use a personalized log format that include the
143
+ # %virtualname tag).
144
+ # But for multi hosting a better solution is to have one log file for each
145
+ # virtual web server. In this case, this parameter is only used to generate
146
+ # full URL's links when ShowLinksOnUrl option is set to 1.
147
+ # If analysing mail log, enter here the domain name of mail server.
148
+ # Example: "myintranetserver"
149
+ # Example: "www.domain.com"
150
+ # Example: "ftp.domain.com"
151
+ # Example: "domain.com"
152
+ #
153
+ SiteDomain="<%= host %>"
154
+
155
+
156
+ # Enter here all other possible domain names, addresses or virtual host
157
+ # aliases someone can use to access your site. Try to keep only the minimum
158
+ # number of possible names/addresses to have the best performances.
159
+ # You can repeat the "SiteDomain" value in this list.
160
+ # This parameter is used to analyze referer field in log file and to help
161
+ # AWStats to know if a referer URL is a local URL of same site or an URL of
162
+ # another site.
163
+ # Note: Use space between each value.
164
+ # Note: You can use regular expression values writing value with REGEX[value].
165
+ # Note: You can also use @/mypath/myfile if list of aliases are in a file.
166
+ # Example: "www.myserver.com localhost 127.0.0.1 REGEX[mydomain\.(net|org)$]"
167
+ #
168
+ HostAliases="localhost 127.0.0.1 <%= host %> stats.<%= host %>"
169
+
170
+
171
+ # If you want to have hosts reported by name instead of ip address, AWStats
172
+ # need to make reverse DNS lookups (if not already done in your log file).
173
+ # With DNSLookup to 0, all hosts will be reported by their IP addresses and
174
+ # not by the full hostname of visitors (except if names are already available
175
+ # in log file).
176
+ # If you want/need to set DNSLookup to 1, don't forget that this will reduce
177
+ # dramatically AWStats update process speed. Do not use on large web sites.
178
+ # Note: Reverse DNS lookup is done on IPv4 only (Enable ipv6 plugin for IPv6).
179
+ # Note: Result of DNS Lookup can be used to build the Country report. However
180
+ # it is highly recommanded to enable the plugin 'geoipfree' or 'geoip' to
181
+ # have an accurate Country report with no need of DNS Lookup.
182
+ # Possible values:
183
+ # 0 - No DNS Lookup
184
+ # 1 - DNS Lookup is fully enabled
185
+ # 2 - DNS Lookup is made only from static DNS cache file (if it exists)
186
+ # Default: 2
187
+ #
188
+ DNSLookup=2
189
+
190
+
191
+ # When AWStats updates its statistics, it stores results of its analysis in
192
+ # files (AWStats database). All those files are written in the directory
193
+ # defined by the "DirData" parameter. Set this value to the directory where
194
+ # you want AWStats to save its database and working files into.
195
+ # Warning: If you want to be able to use the "AllowToUpdateStatsFromBrowser"
196
+ # feature (see later), you need "Write" permissions by web server user on this
197
+ # directory (and "Modify" for Windows NTFS file systems).
198
+ # Example: "/var/lib/awstats"
199
+ # Example: "../data"
200
+ # Example: "C:/awstats_data_dir"
201
+ # Default: "." (means same directory as awstats.pl)
202
+ #
203
+ DirData="/var/www/zena/<%= host %>/log/awstats"
204
+
205
+
206
+ # Relative or absolute web URL of your awstats cgi-bin directory.
207
+ # This parameter is used only when AWStats is run from command line
208
+ # with -output option (to generate links in HTML reported page).
209
+ # Example: "/awstats"
210
+ # Default: "/cgi-bin" (means awstats.pl is in "/yourwwwroot/cgi-bin")
211
+ #
212
+ DirCgi="/cgi-bin"
213
+
214
+
215
+ # Relative or absolute web URL of your awstats icon directory.
216
+ # If you build static reports ("... -output > outputpath/output.html"), enter
217
+ # path of icon directory relative to the output directory 'outputpath'.
218
+ # Example: "/awstatsicons"
219
+ # Example: "../icon"
220
+ # Default: "/icon" (means you must copy icon directories in "/mywwwroot/icon")
221
+ #
222
+ DirIcons="/awstatsicons"
223
+
224
+
225
+ # When this parameter is set to 1, AWStats add a button on report page to
226
+ # allow to "update" statistics from a web browser. Warning, when "update" is
227
+ # made from a browser, AWStats is ran as a CGI by the web server user defined
228
+ # in your web server (user "nobody" by default with Apache, "IUSR_XXX" with
229
+ # IIS), so the "DirData" directory and all already existing history files
230
+ # awstatsMMYYYY[.xxx].txt must be writable by this user. Change permissions if
231
+ # necessary to "Read/Write" (and "Modify" for Windows NTFS file systems).
232
+ # Warning: Update process can be long so you might experience "time out"
233
+ # browser errors if you don't launch AWStats enough frequently.
234
+ # When set to 0, update is only made when AWStats is ran from the command
235
+ # line interface (or a task scheduler).
236
+ # Possible values: 0 or 1
237
+ # Default: 0
238
+ #
239
+ AllowToUpdateStatsFromBrowser=0
240
+
241
+
242
+ # AWStats save and sort its database on a month basis, this allows to build
243
+ # build a report quickly. However, if you choose the -month=all from command
244
+ # line or value '-Year-' from CGI combo form to have a report for all year,
245
+ # AWStats needs to reload all data for full year, and resort them completely,
246
+ # requiring a large amount of time, memory and CPU. This might be a problem
247
+ # for web hosting providers that offer AWStats for large sites, on shared
248
+ # servers, to non CPU cautious customers.
249
+ # For this reason, the 'full year' is only enabled on Command Line by default.
250
+ # You can change this by setting this parameter to 0, 1, 2 or 3.
251
+ # Possible values:
252
+ # 0 - Never allowed
253
+ # 1 - Allowed on CLI only, -Year- value in combo is not visible
254
+ # 2 - Allowed on CLI only, -Year- value in combo is visible but not allowed
255
+ # 3 - Possible on CLI and CGI
256
+ # Default: 2
257
+ #
258
+ AllowFullYearView=3
259
+
260
+
261
+
262
+ #-----------------------------------------------------------------------------
263
+ # OPTIONAL SETUP SECTION (Not required but increase AWStats features)
264
+ #-----------------------------------------------------------------------------
265
+
266
+ # When the update process run, AWStats can set a lock file in TEMP or TMP
267
+ # directory. This lock is to avoid to have 2 update processes running at the
268
+ # same time to prevent unknown conflicts problems and avoid DoS attacks when
269
+ # AllowToUpdateStatsFromBrowser is set to 1.
270
+ # Because, when you use lock file, you can experience sometimes problems in
271
+ # lock file not correctly removed (killed process for example requires that
272
+ # you remove the file manualy), this option is not enabled by default (Do
273
+ # not enable this option with no console server access).
274
+ # Change : Effective immediatly
275
+ # Possible values: 0 or 1
276
+ # Default: 0
277
+ #
278
+ EnableLockForUpdate=0
279
+
280
+
281
+ # AWStats can do reverse DNS lookups through a static DNS cache file that was
282
+ # previously created manually. If no path is given in static DNS cache file
283
+ # name, AWStats will search DirData directory. This file is never changed.
284
+ # This option is not used if DNSLookup=0.
285
+ # Note: DNS cache file format is 'minsince1970 ipaddress resolved_hostname'
286
+ # or just 'ipaddress resolved_hostname'
287
+ # Change : Effective for new updates only
288
+ # Example: "/mydnscachedir/dnscache"
289
+ # Default: "dnscache.txt"
290
+ #
291
+ DNSStaticCacheFile="dnscache.txt"
292
+
293
+
294
+ # AWStats can do reverse DNS lookups through a DNS cache file that was created
295
+ # by a previous run of AWStats. This file is erased and recreated after each
296
+ # statistics update process. You don't need to create and/or edit it.
297
+ # AWStats will read and save this file in DirData directory.
298
+ # This option is used only if DNSLookup=1.
299
+ # Note: If a DNSStaticCacheFile is available, AWStats will check for DNS
300
+ # lookup in DNSLastUpdateCacheFile after checking into DNSStaticCacheFile.
301
+ # Change : Effective for new updates only
302
+ # Example: "/mydnscachedir/dnscachelastupdate"
303
+ # Default: "dnscachelastupdate.txt"
304
+ #
305
+ DNSLastUpdateCacheFile="dnscachelastupdate.txt"
306
+
307
+
308
+ # You can specify specific IP addresses that should NOT be looked up in DNS.
309
+ # This option is used only if DNSLookup=1.
310
+ # Note: Use space between each value.
311
+ # Note: You can use regular expression values writing value with REGEX[value].
312
+ # Change : Effective for new updates only
313
+ # Example: "123.123.123.123 REGEX[^192\.168\.]"
314
+ # Default: ""
315
+ #
316
+ SkipDNSLookupFor=""
317
+
318
+
319
+ # The following two parameters allow you to protect a config file from being
320
+ # read by AWStats when called from a browser if web user has not been
321
+ # authenticated. Your AWStats program must be in a web protected "realm" (With
322
+ # Apache, you can use .htaccess files to do so. With other web servers, see
323
+ # your server setup manual).
324
+ # Change : Effective immediatly
325
+ # Possible values: 0 or 1
326
+ # Default: 0
327
+ #
328
+ AllowAccessFromWebToAuthenticatedUsersOnly=0
329
+
330
+
331
+ # This parameter give the list of all authorized authenticated users to view
332
+ # statistics for this domain/config file. This parameter is used only if
333
+ # AllowAccessFromWebToAuthenticatedUsersOnly is set to 1.
334
+ # Change : Effective immediatly
335
+ # Example: "user1 user2"
336
+ # Example: "__REMOTE_USER__"
337
+ # Default: ""
338
+ #
339
+ AllowAccessFromWebToFollowingAuthenticatedUsers=""
340
+
341
+
342
+ # When this parameter is define to something, the IP address of the user that
343
+ # read its statistics from a browser (when AWStats is used as a CGI) is
344
+ # checked and must match one of the IP address values or ranges.
345
+ # Change : Effective immediatly
346
+ # Example: "127.0.0.1 123.123.123.1-123.123.123.255"
347
+ # Default: ""
348
+ #
349
+ AllowAccessFromWebToFollowingIPAddresses=""
350
+
351
+
352
+ # If the "DirData" directory (see above) does not exists, AWStats return an
353
+ # error. However, you can ask AWStats to create it.
354
+ # This option can be used by some Web Hosting Providers that has defined a
355
+ # dynamic value for DirData (for example DirData="/home/__REMOTE_USER__") and
356
+ # don't want to have to create a new directory each time they add a new user.
357
+ # Change : Effective immediatly
358
+ # Possible values: 0 or 1
359
+ # Default: 0
360
+ #
361
+ CreateDirDataIfNotExists=0
362
+
363
+
364
+ # You can choose in which format the Awstats history database is saved.
365
+ # Note: Using "xml" format make AWStats building database files three times
366
+ # larger than using "text" format.
367
+ # Change : Database format is switched after next update
368
+ # Possible values: text or xml
369
+ # Default: text
370
+ #
371
+ BuildHistoryFormat=text
372
+
373
+
374
+ # If you prefer having the report output pages be built as XML compliant pages
375
+ # instead of simple HTML pages, you can set this to 'xhtml' (May not works
376
+ # properly with old browsers).
377
+ # Change : Effective immediatly
378
+ # Possible values: html or xhtml
379
+ # Default: html
380
+ #
381
+ BuildReportFormat=html
382
+
383
+
384
+ # AWStats databases can be updated from command line of from a browser (when
385
+ # used as a cgi program). So AWStats database files need write permission
386
+ # for both command line user and default web server user (nobody for Unix,
387
+ # IUSR_xxx for IIS/Windows,...).
388
+ # To avoid permission's problems between update process (run by an admin user)
389
+ # and CGI process (ran by a low level user), AWStats can save its database
390
+ # files with read and write permissions for everyone.
391
+ # By default, AWStats keep default user permissions on updated files. If you
392
+ # set AllowToUpdateStatsFromBrowser to 1, you can change this parameter to 1.
393
+ # Change : Effective for new updates only
394
+ # Possible values: 0 or 1
395
+ # Default: 0
396
+ #
397
+ SaveDatabaseFilesWithPermissionsForEveryone=0
398
+
399
+
400
+ # AWStats can purge log file, after analyzing it. Note that AWStats is able
401
+ # to detect new lines in a log file, to process only them, so you can launch
402
+ # AWStats as often as you want, even with this parameter to 0.
403
+ # With 0, no purge is made, so you must use a scheduled task or a web server
404
+ # that make this purge frequently.
405
+ # With 1, the purge of the log file is made each time AWStats update is ran.
406
+ # This parameter doesn't work with IIS (This web server doesn't let its log
407
+ # file to be purged).
408
+ # Change : Effective for new updates only
409
+ # Possible values: 0 or 1
410
+ # Default: 0
411
+ #
412
+ PurgeLogFile=0
413
+
414
+
415
+ # When PurgeLogFile is setup to 1, AWStats will clean your log file after
416
+ # processing it. You can however keep an archive file of all processed log
417
+ # records by setting this parameter (For example if you want to use another
418
+ # log analyzer). The archived log file is saved in "DirData" with name
419
+ # awstats_archive.configname[.suffix].log
420
+ # This parameter is not used if PurgeLogFile=0
421
+ # Change : Effective for new updates only
422
+ # Possible values: 0, 1, or tags (See LogFile parameter) for suffix
423
+ # Example: 1
424
+ # Example: %YYYY%MM%DD
425
+ # Default: 0
426
+ #
427
+ ArchiveLogRecords=0
428
+
429
+
430
+ # Each time you run the update process, AWStats overwrite the 'historic file'
431
+ # for the month (awstatsMMYYYY[.*].txt) with the updated one.
432
+ # When write errors occurs (IO, disk full,...), this historic file can be
433
+ # corrupted and must be deleted. Because this file contains information of all
434
+ # past processed log files, you will loose old stats if removed. So you can
435
+ # ask AWStats to save last non corrupted file in a .bak file. This file is
436
+ # stored in "DirData" directory with other 'historic files'.
437
+ # Change : Effective for new updates only
438
+ # Possible values: 0 or 1
439
+ # Default: 0
440
+ #
441
+ KeepBackupOfHistoricFiles=0
442
+
443
+
444
+ # Default index page name for your web server.
445
+ # Change : Effective for new updates only
446
+ # Example: "index.php index.html default.html"
447
+ # Default: "index.html"
448
+ #
449
+ DefaultFile="index.html"
450
+
451
+
452
+ # Do not include access from clients that match following criteria.
453
+ # If your log file contains IP adresses in host field, you must enter here
454
+ # matching IP adresses criteria.
455
+ # If DNS lookup is already done in your log file, you must enter here hostname
456
+ # criteria, else enter ip address criteria.
457
+ # The opposite parameter of "SkipHosts" is "OnlyHosts".
458
+ # Note: Use space between each value. This parameter is not case sensitive.
459
+ # Note: You can use regular expression values writing value with REGEX[value].
460
+ # Change : Effective for new updates only
461
+ # Example: "127.0.0.1 REGEX[^192\.168\.] REGEX[^10\.]"
462
+ # Example: "localhost REGEX[^.*\.localdomain$]"
463
+ # Default: ""
464
+ #
465
+ SkipHosts=""
466
+
467
+
468
+ # Do not include access from clients with a user agent that match following
469
+ # criteria. If you want to exclude a robot, you should update the robots.pm
470
+ # file instead of this parameter.
471
+ # The opposite parameter of "SkipUserAgents" is "OnlyUserAgents".
472
+ # Note: Use space between each value. This parameter is not case sensitive.
473
+ # Note: You can use regular expression values writing value with REGEX[value].
474
+ # Change : Effective for new updates only
475
+ # Example: "konqueror REGEX[ua_test_v\d\.\d]"
476
+ # Default: ""
477
+ #
478
+ SkipUserAgents=""
479
+
480
+
481
+ # Use SkipFiles to ignore access to URLs that match one of following entries.
482
+ # You can enter a list of not important URLs (like framed menus, hidden pages,
483
+ # etc...) to exclude them from statistics. You must enter here exact relative
484
+ # URL as found in log file, or a matching REGEX value. Check apply on URL with
485
+ # all its query paramaters.
486
+ # For example, to ignore /badpage.php, just add "/badpage.php". To ignore all
487
+ # pages in a particular directory, add "REGEX[^\/directorytoexclude]".
488
+ # The opposite parameter of "SkipFiles" is "OnlyFiles".
489
+ # Note: Use space between each value. This parameter is or not case sensitive
490
+ # depending on URLNotCaseSensitive parameter.
491
+ # Note: You can use regular expression values writing value with REGEX[value].
492
+ # Change : Effective for new updates only
493
+ # Example: "/badpage.php /page.php?param=x REGEX[^\/excludedirectory]"
494
+ # Default: ""
495
+ #
496
+ SkipFiles=""
497
+
498
+
499
+ # Use SkipReferrersBlackList if you want to exclude records coming from a SPAM
500
+ # referrer. Parameter must receive a local file name containing rules applied
501
+ # on referrer field. If parameter is empty, no filter is applied.
502
+ # An example of such a file is available in lib/blacklist.txt
503
+ # You can download updated version at http://www.jayallen.org/comment_spam/
504
+ # Change : Effective for new updates only
505
+ # Example: "/mylibpath/blacklist.txt"
506
+ # Default: ""
507
+ #
508
+ # WARNING!! Using this feature make AWStats running very slower (5 times slower
509
+ # with black list file provided with AWStats !
510
+ #
511
+ SkipReferrersBlackList=""
512
+
513
+
514
+ # Include in stats, only accesses from hosts that match one of following
515
+ # entries. For example, if you want AWStats to filter access to keep only
516
+ # stats for visits from particular hosts, you can add those hosts names in
517
+ # this parameter.
518
+ # If DNS lookup is already done in your log file, you must enter here hostname
519
+ # criteria, else enter ip address criteria.
520
+ # The opposite parameter of "OnlyHosts" is "SkipHosts".
521
+ # Note: Use space between each value. This parameter is not case sensitive.
522
+ # Note: You can use regular expression values writing value with REGEX[value].
523
+ # Change : Effective for new updates only
524
+ # Example: "127.0.0.1 REGEX[^192\.168\.] REGEX[^10\.]"
525
+ # Default: ""
526
+ #
527
+ OnlyHosts=""
528
+
529
+
530
+ # Include in stats, only accesses from user agent that match one of following
531
+ # entries. For example, if you want AWStats to filter access to keep only
532
+ # stats for visits from particular browsers, you can add their user agents
533
+ # string in this parameter.
534
+ # The opposite parameter of "OnlyUserAgents" is "SkipUserAgents".
535
+ # Note: Use space between each value. This parameter is not case sensitive.
536
+ # Note: You can use regular expression values writing value with REGEX[value].
537
+ # Change : Effective for new updates only
538
+ # Example: "msie"
539
+ # Default: ""
540
+ #
541
+ OnlyUserAgents=""
542
+
543
+
544
+ # Include in stats, only accesses to URLs that match one of following entries.
545
+ # For example, if you want AWStats to filter access to keep only stats that
546
+ # match a particular string, like a particular directory, you can add this
547
+ # directory name in this parameter.
548
+ # The opposite parameter of "OnlyFiles" is "SkipFiles".
549
+ # Note: Use space between each value. This parameter is or not case sensitive
550
+ # depending on URLNotCaseSensitive parameter.
551
+ # Note: You can use regular expression values writing value with REGEX[value].
552
+ # Change : Effective for new updates only
553
+ # Example: "REGEX[marketing_directory] REGEX[office\/.*\.(csv|sxw)$]"
554
+ # Default: ""
555
+ #
556
+ OnlyFiles="REGEX[^\/([^o].(\/|$)|.[^o](\/|$))]"
557
+
558
+
559
+
560
+ # Add here a list of kind of url (file extension) that must be counted as
561
+ # "Hit only" and not as a "Hit" and "Page/Download". You can set here all
562
+ # images extensions as they are hit downloaded that must be counted but they
563
+ # are not viewed pages. URLs with such extensions are not included in the TOP
564
+ # Pages/URL report.
565
+ # Note: If you want to exclude particular URLs from stats (No Pages and no
566
+ # Hits reported), you must use SkipFiles parameter.
567
+ # Change : Effective for new updates only
568
+ # Example: "css js class gif jpg jpeg png bmp ico zip arj gz z wav mp3 wma mpg"
569
+ # Example: ""
570
+ # Default: "css js class gif jpg jpeg png bmp ico"
571
+ #
572
+ NotPageList="css js class gif jpg jpeg png bmp ico swf"
573
+
574
+
575
+ # By default, AWStats considers that records found in web log file are
576
+ # successful hits if HTTP code returned by server is a valid HTTP code (200
577
+ # and 304). Any other code are reported in HTTP status chart.
578
+ # Note that HTTP 'control codes', like redirection (302, 305) are not added by
579
+ # default in this list as they are not pages seen by a visitor but are
580
+ # protocol exchange codes to tell the browser to ask another page. Because
581
+ # this other page will be counted and seen with a 200 or 304 code, if you
582
+ # add such codes, you will have 2 pages viewed reported for only one in facts.
583
+ # Change : Effective for new updates only
584
+ # Example: "200 304 302 305"
585
+ # Default: "200 304"
586
+ #
587
+ ValidHTTPCodes="200 304"
588
+
589
+
590
+ # By default, AWStats considers that records found in mail log file are
591
+ # successful mail transfers if field that represent return code in analyzed
592
+ # log file match values defined by this parameter.
593
+ # Change : Effective for new updates only
594
+ # Example: "1 250 200"
595
+ # Default: "1 250"
596
+ #
597
+ ValidSMTPCodes="1 250"
598
+
599
+
600
+ # Some web servers on some Operating systems (IIS-Windows) considers that a
601
+ # login with same value but different case are the same login. To tell AWStats
602
+ # to also considers them as one, set this parameter to 1.
603
+ # Change : Effective for new updates only
604
+ # Possible values: 0 or 1
605
+ # Default: 0
606
+ #
607
+ AuthenticatedUsersNotCaseSensitive=0
608
+
609
+
610
+ # Some web servers on some Operating systems (IIS-Windows) considers that two
611
+ # URLs with same value but different case are the same URL. To tell AWStats to
612
+ # also considers them as one, set this parameter to 1.
613
+ # Change : Effective for new updates only
614
+ # Possible values: 0 or 1
615
+ # Default: 0
616
+ #
617
+ URLNotCaseSensitive=0
618
+
619
+
620
+ # Keep or remove the anchor string you can find in some URLs.
621
+ # Change : Effective for new updates only
622
+ # Possible values: 0 or 1
623
+ # Default: 0
624
+ #
625
+ URLWithAnchor=0
626
+
627
+
628
+ # In URL links, "?" char is used to add parameter's list in URLs. Syntax is:
629
+ # /mypage.html?param1=value1&param2=value2
630
+ # However, some servers/sites use also others chars to isolate dynamic part of
631
+ # their URLs. You can complete this list with all such characters.
632
+ # Change : Effective for new updates only
633
+ # Example: "?;,"
634
+ # Default: "?;"
635
+ #
636
+ URLQuerySeparators="?;"
637
+
638
+
639
+ # Keep or remove the query string to the URL in the statistics for individual
640
+ # pages. This is primarily used to differentiate between the URLs of dynamic
641
+ # pages. If set to 1, mypage.html?id=x and mypage.html?id=y are counted as two
642
+ # different pages.
643
+ # Warning, when set to 1, memory required to run AWStats is dramatically
644
+ # increased if you have a lot of changing URLs (for example URLs with a random
645
+ # id inside). Such web sites should not set this option to 1 or use seriously
646
+ # the next parameter URLWithQueryWithOnlyFollowingParameters (or eventually
647
+ # URLWithQueryWithoutFollowingParameters).
648
+ # Change : Effective for new updates only
649
+ # Possible values:
650
+ # 0 - URLs are cleaned from the query string (ie: "/mypage.html")
651
+ # 1 - Full URL with query string is used (ie: "/mypage.html?p=x&q=y")
652
+ # Default: 0
653
+ #
654
+ URLWithQuery=0
655
+
656
+
657
+ # When URLWithQuery is on, you will get the full URL with all parameters in
658
+ # URL reports. But among thoose parameters, sometimes you don't need a
659
+ # particular parameter because it does not identify the page or because it's
660
+ # a random ID changing for each access even if URL points to same page. In
661
+ # such cases, it is higly recommanded to ask AWStats to keep only parameters
662
+ # you need (if you know them) before counting, manipulating and storing URL.
663
+ # Enter here list of wanted parameters. For example, with "param", one hit on
664
+ # /mypage.cgi?param=abc&id=Yo4UomP9d and /mypage.cgi?param=abc&id=Mu8fdxl3r
665
+ # will be reported as 2 hits on /mypage.cgi?param=abc
666
+ # This parameter is not used when URLWithQuery is 0 and can't be used with
667
+ # URLWithQueryWithoutFollowingParameters.
668
+ # Change : Effective for new updates only
669
+ # Example: "param"
670
+ # Default: ""
671
+ #
672
+ URLWithQueryWithOnlyFollowingParameters=""
673
+
674
+
675
+ # When URLWithQuery is on, you will get the full URL with all parameters in
676
+ # URL reports. But among thoose parameters, sometimes you don't need a
677
+ # particular parameter because it does not identify the page or because it's
678
+ # a random ID changing for each access even if URL points to same page. In
679
+ # such cases, it is higly recommanded to ask AWStats to remove such parameters
680
+ # from the URL before counting, manipulating and storing URL. Enter here list
681
+ # of all non wanted parameters. For example if you enter "id", one hit on
682
+ # /mypage.cgi?param=abc&id=Yo4UomP9d and /mypage.cgi?param=abc&id=Mu8fdxl3r
683
+ # will be reported as 2 hits on /mypage.cgi?param=abc
684
+ # This parameter is not used when URLWithQuery is 0 and can't be used with
685
+ # URLWithQueryWithOnlyFollowingParameters.
686
+ # Change : Effective for new updates only
687
+ # Example: "PHPSESSID jsessionid"
688
+ # Default: ""
689
+ #
690
+ URLWithQueryWithoutFollowingParameters=""
691
+
692
+
693
+ # Keep or remove the query string to the referrer URL in the statistics for
694
+ # external referrer pages. This is used to differentiate between the URLs of
695
+ # dynamic referrer pages. If set to 1, mypage.html?id=x and mypage.html?id=y
696
+ # are counted as two different referrer pages.
697
+ # Change : Effective for new updates only
698
+ # Possible values:
699
+ # 0 - Referrer URLs are cleaned from the query string (ie: "/mypage.html")
700
+ # 1 - Full URL with query string is used (ie: "/mypage.html?p=x&q=y")
701
+ # Default: 0
702
+ #
703
+ URLReferrerWithQuery=0
704
+
705
+
706
+ # AWStats can detect setup problems or show you important informations to have
707
+ # a better use. Keep this to 1, except if AWStats says you can change it.
708
+ # Change : Effective immediatly
709
+ # Possible values: 0 or 1
710
+ # Default: 1
711
+ #
712
+ WarningMessages=1
713
+
714
+
715
+ # When an error occurs, AWStats output a message related to errors. If you
716
+ # want (in most cases for security reasons) to have no error messages, you
717
+ # can set this parameter to your personalized generic message.
718
+ # Change : Effective immediatly
719
+ # Example: "An error occured. Contact your Administrator"
720
+ # Default: ""
721
+ #
722
+ ErrorMessages=""
723
+
724
+
725
+ # AWStat can be run with debug=x parameter to output various informations
726
+ # to help in debugging or solving troubles. If you want to allow this (not
727
+ # enabled by default for security reasons), set this parameter to 0.
728
+ # Change : Effective immediatly
729
+ # Possible values: 0 or 1
730
+ # Default: 0
731
+ #
732
+ DebugMessages=0
733
+
734
+
735
+ # To help you to detect if your log format is good, AWStats report an error
736
+ # if all the first NbOfLinesForCorruptedLog lines have a format that does not
737
+ # match the LogFormat parameter.
738
+ # However, some worm virus attack on your web server can result in a very high
739
+ # number of corrupted lines in your log. So if you experience awstats stop
740
+ # because of bad virus records at the beginning of your log file, you can
741
+ # increase this parameter (very rare).
742
+ # Change : Effective for new updates only
743
+ # Default: 50
744
+ #
745
+ NbOfLinesForCorruptedLog=50
746
+
747
+
748
+ # For some particular integration needs, you may want to have CGI links to
749
+ # point to another script than awstats.pl.
750
+ # Use the name of this script in WrapperScript parameter.
751
+ # Change : Effective immediatly
752
+ # Example: "awstatslauncher.pl"
753
+ # Default: ""
754
+ #
755
+ WrapperScript=""
756
+
757
+
758
+ # DecodeUA must be set to 1 if you use Roxen web server. This server converts
759
+ # all spaces in user agent field into %20. This make the AWStats robots, os
760
+ # and browsers detection fail in some cases. Just change it to 1 if and only
761
+ # if your web server is Roxen.
762
+ # Change : Effective for new updates only
763
+ # Possible values: 0 or 1
764
+ # Default: 0
765
+ #
766
+ DecodeUA=0
767
+
768
+
769
+ # MiscTrackerUrl can be used to make AWStats able to detect some miscellanous
770
+ # things, that can not be tracked on other way, like:
771
+ # - Javascript disabled
772
+ # - Java enabled
773
+ # - Screen size
774
+ # - Color depth
775
+ # - Macromedia Director plugin
776
+ # - Macromedia Shockwave plugin
777
+ # - Realplayer G2 plugin
778
+ # - QuickTime plugin
779
+ # - Mediaplayer plugin
780
+ # - Acrobat PDF plugin
781
+ # To enable all this features, you must copy the awstats_misc_tracker.js file
782
+ # into a /js/ directory stored in your web document root and add the following
783
+ # HTML code at the end of your index page (but before </BODY>) :
784
+ #
785
+ # <script language=javascript src="/js/awstats_misc_tracker.js"></script>
786
+ # <noscript><img src="/js/awstats_misc_tracker.js?nojs=y" height=0 width=0 border=0 style="display: none"></noscript>
787
+ #
788
+ # If code is not added in index page, all those detection capabilities will be
789
+ # disabled. You must also check that ShowScreenSizeStats and ShowMiscStats
790
+ # parameters are set to 1 to make results appear in AWStats report page.
791
+ # If you want to use another directory than /js/, you must also change the
792
+ # awstatsmisctrackerurl variable into the awstats_misc_tracker.js file.
793
+ # Change : Effective for new updates only.
794
+ # Possible value: URL of javascript tracker file added in your HTML code.
795
+ # Default: "/js/awstats_misc_tracker.js"
796
+ #
797
+ MiscTrackerUrl="/js/awstats_misc_tracker.js"
798
+
799
+
800
+
801
+ #-----------------------------------------------------------------------------
802
+ # OPTIONAL ACCURACY SETUP SECTION (Not required but increase AWStats features)
803
+ #-----------------------------------------------------------------------------
804
+
805
+ # Following values allows you to define accuracy of AWStats entities (robots,
806
+ # browsers, os, referers, file types) detection.
807
+ # It might be a good idea for large web sites or ISP that provides AWStats to
808
+ # high number of customers, to set this parameter to 1 (or 0), instead of 2.
809
+ # Possible values:
810
+ # 0 = No detection,
811
+ # 1 = Medium/Standard detection
812
+ # 2 = Full detection
813
+ # Change : Effective for new updates only
814
+ # Note : LevelForBrowsersDetection can also accept value "allphones". This
815
+ # enable detailed detection of phone/pda browsers.
816
+ # Default: 2 (0 for LevelForWormsDetection)
817
+ #
818
+ LevelForBrowsersDetection=2 # 0 disables Browsers detection.
819
+ # 2 reduces AWStats speed by 2%
820
+ # allphones reduces AWStats speed by 5%
821
+ LevelForOSDetection=2 # 0 disables OS detection.
822
+ # 2 reduces AWStats speed by 3%
823
+ LevelForRefererAnalyze=2 # 0 disables Origin detection.
824
+ # 2 reduces AWStats speed by 14%
825
+ LevelForRobotsDetection=2 # 0 disables Robots detection.
826
+ # 2 reduces AWStats speed by 2.5%
827
+ LevelForSearchEnginesDetection=2 # 0 disables Search engines detection.
828
+ # 2 reduces AWStats speed by 9%
829
+ LevelForKeywordsDetection=2 # 0 disables Keyphrases/Keywords detection.
830
+ # 2 reduces AWStats speed by 1%
831
+ LevelForFileTypesDetection=2 # 0 disables File types detection.
832
+ # 2 reduces AWStats speed by 1%
833
+ LevelForWormsDetection=0 # 0 disables Worms detection.
834
+ # 2 reduces AWStats speed by 15%
835
+
836
+
837
+
838
+ #-----------------------------------------------------------------------------
839
+ # OPTIONAL APPEARANCE SETUP SECTION (Not required but increase AWStats features)
840
+ #-----------------------------------------------------------------------------
841
+
842
+ # When you use AWStats as a CGI, you can have the reports shown in HTML frames.
843
+ # Frames are only available for report viewed dynamically. When you build
844
+ # pages from command line, this option is not used and no frames are built.
845
+ # Possible values: 0 or 1
846
+ # Default: 1
847
+ #
848
+ UseFramesWhenCGI=1
849
+
850
+
851
+ # This parameter ask your browser to open detailed reports into a different
852
+ # window than the main page.
853
+ # Possible values:
854
+ # 0 - Open all in same browser window
855
+ # 1 - Open detailed reports in another window except if using frames
856
+ # 2 - Open always in a different window even if reports are framed
857
+ # Default: 1
858
+ #
859
+ DetailedReportsOnNewWindows=1
860
+
861
+
862
+ # You can add, in the HTML report page, a cache lifetime (in seconds) that
863
+ # will be returned to browser in HTTP header answer by server.
864
+ # This parameter is not used when report are built with -staticlinks option.
865
+ # Example: 3600
866
+ # Default: 0
867
+ #
868
+ Expires=0
869
+
870
+
871
+ # To avoid too large web pages, you can ask AWStats to limit number of rows of
872
+ # all reported charts to this number when no other limit apply.
873
+ # Default: 1000
874
+ #
875
+ MaxRowsInHTMLOutput=1000
876
+
877
+
878
+ # Set your primary language (ISO-639-1 language codes).
879
+ # Possible value:
880
+ # Albanian=al, Bosnian=ba, Bulgarian=bg, Catalan=ca,
881
+ # Chinese (Taiwan)=tw, Chinese (Simpliefied)=cn, Croatian=hr, Czech=cz,
882
+ # Danish=dk, Dutch=nl, English=en, Estonian=et, Euskara=eu, Finnish=fi,
883
+ # French=fr, Galician=gl, German=de, Greek=gr, Hebrew=he, Hungarian=hu,
884
+ # Icelandic=is, Indonesian=id, Italian=it, Japanese=jp, Korean=ko,
885
+ # Latvian=lv, Norwegian (Nynorsk)=nn, Norwegian (Bokmal)=nb, Polish=pl,
886
+ # Portuguese=pt, Portuguese (Brazilian)=br, Romanian=ro, Russian=ru,
887
+ # Serbian=sr, Slovak=sk, Slovenian=si, Spanish=es, Swedish=se, Turkish=tr,
888
+ # Ukrainian=ua, Welsh=cy.
889
+ # First available language accepted by browser=auto
890
+ # Default: "auto"
891
+ #
892
+ Lang="auto"
893
+
894
+
895
+ # Set the location of language files.
896
+ # Example: "/usr/share/awstats/lang"
897
+ # Default: "./lang" (means lang directory is in same location than awstats.pl)
898
+ #
899
+ DirLang="./lang"
900
+
901
+
902
+ # Show menu header with reports' links
903
+ # Possible values: 0 or 1
904
+ # Default: 1
905
+ #
906
+ ShowMenu=1
907
+
908
+
909
+ # You choose here which reports you want to see in the main page and what you
910
+ # want to see in those reports.
911
+ # Possible values:
912
+ # 0 - Report is not shown at all
913
+ # 1 - Report is shown in main page with an entry in menu and default columns
914
+ # XYZ - Report shows column informations defined by code X,Y,Z...
915
+ # X,Y,Z... are code letters among the following:
916
+ # U = Unique visitors
917
+ # V = Visits
918
+ # P = Number of pages
919
+ # H = Number of hits (or mails)
920
+ # B = Bandwith (or total mail size for mail logs)
921
+ # L = Last access date
922
+ # E = Entry pages
923
+ # X = Exit pages
924
+ # C = Web compression (mod_gzip,mod_deflate)
925
+ # M = Average mail size (mail logs)
926
+ #
927
+
928
+ # Show monthly summary
929
+ # Context: Web, Streaming, Mail, Ftp
930
+ # Default: UVPHB, Possible column codes: UVPHB
931
+ ShowSummary=UVPHB
932
+
933
+ # Show monthly chart
934
+ # Context: Web, Streaming, Mail, Ftp
935
+ # Default: UVPHB, Possible column codes: UVPHB
936
+ ShowMonthStats=UVPHB
937
+
938
+ # Show days of month chart
939
+ # Context: Web, Streaming, Mail, Ftp
940
+ # Default: VPHB, Possible column codes: VPHB
941
+ ShowDaysOfMonthStats=VPHB
942
+
943
+ # Show days of week chart
944
+ # Context: Web, Streaming, Mail, Ftp
945
+ # Default: PHB, Possible column codes: PHB
946
+ ShowDaysOfWeekStats=PHB
947
+
948
+ # Show hourly chart
949
+ # Context: Web, Streaming, Mail, Ftp
950
+ # Default: PHB, Possible column codes: PHB
951
+ ShowHoursStats=PHB
952
+
953
+ # Show domains/country chart
954
+ # Context: Web, Streaming, Mail, Ftp
955
+ # Default: PHB, Possible column codes: PHB
956
+ ShowDomainsStats=PHB
957
+
958
+ # Show hosts chart
959
+ # Context: Web, Streaming, Mail, Ftp
960
+ # Default: PHBL, Possible column codes: PHBL
961
+ ShowHostsStats=PHBL
962
+
963
+ # Show authenticated users chart
964
+ # Context: Web, Streaming, Ftp
965
+ # Default: 0, Possible column codes: PHBL
966
+ ShowAuthenticatedUsers=0
967
+
968
+ # Show robots chart
969
+ # Context: Web, Streaming
970
+ # Default: HBL, Possible column codes: HBL
971
+ ShowRobotsStats=HBL
972
+
973
+ # Show worms chart
974
+ # Context: Web, Streaming
975
+ # Default: 0 (If set to other than 0, see also LevelForWormsDetection), Possible column codes: HBL
976
+ ShowWormsStats=0
977
+
978
+ # Show email senders chart (For use when analyzing mail log files)
979
+ # Context: Mail
980
+ # Default: 0, Possible column codes: HBML
981
+ ShowEMailSenders=0
982
+
983
+ # Show email receivers chart (For use when analyzing mail log files)
984
+ # Context: Mail
985
+ # Default: 0, Possible column codes: HBML
986
+ ShowEMailReceivers=0
987
+
988
+ # Show session chart
989
+ # Context: Web, Streaming, Ftp
990
+ # Default: 1, Possible column codes: None
991
+ ShowSessionsStats=1
992
+
993
+ # Show pages-url chart.
994
+ # Context: Web, Streaming, Ftp
995
+ # Default: PBEX, Possible column codes: PBEX
996
+ ShowPagesStats=PBEX
997
+
998
+ # Show file types chart.
999
+ # Context: Web, Streaming, Ftp
1000
+ # Default: HB, Possible column codes: HBC
1001
+ ShowFileTypesStats=HB
1002
+
1003
+ # Show file size chart (Not yet available)
1004
+ # Context: Web, Streaming, Mail, Ftp
1005
+ # Default: 1, Possible column codes: None
1006
+ ShowFileSizesStats=0
1007
+
1008
+ # Show operating systems chart
1009
+ # Context: Web, Streaming, Ftp
1010
+ # Default: 1, Possible column codes: None
1011
+ ShowOSStats=1
1012
+
1013
+ # Show browsers chart
1014
+ # Context: Web, Streaming
1015
+ # Default: 1, Possible column codes: None
1016
+ ShowBrowsersStats=1
1017
+
1018
+ # Show screen size chart
1019
+ # Context: Web, Streaming
1020
+ # Default: 0 (If set to 1, see also MiscTrackerUrl), Possible column codes: None
1021
+ ShowScreenSizeStats=0
1022
+
1023
+ # Show origin chart
1024
+ # Context: Web, Streaming
1025
+ # Default: PH, Possible column codes: PH
1026
+ ShowOriginStats=PH
1027
+
1028
+ # Show keyphrases chart
1029
+ # Context: Web, Streaming
1030
+ # Default: 1, Possible column codes: None
1031
+ ShowKeyphrasesStats=1
1032
+
1033
+ # Show keywords chart
1034
+ # Context: Web, Streaming
1035
+ # Default: 1, Possible column codes: None
1036
+ ShowKeywordsStats=1
1037
+
1038
+ # Show misc chart
1039
+ # Context: Web, Streaming
1040
+ # Default: a (See also MiscTrackerUrl parameter), Possible column codes: anjdfrqwp
1041
+ ShowMiscStats=a
1042
+
1043
+ # Show http errors chart
1044
+ # Context: Web, Streaming
1045
+ # Default: 1, Possible column codes: None
1046
+ ShowHTTPErrorsStats=1
1047
+
1048
+ # Show smtp errors chart (For use when analyzing mail log files)
1049
+ # Context: Mail
1050
+ # Default: 0, Possible column codes: None
1051
+ ShowSMTPErrorsStats=0
1052
+
1053
+ # Show the cluster report (Your LogFormat must contains the %cluster tag)
1054
+ # Context: Web, Streaming, Ftp
1055
+ # Default: 0, Possible column codes: PHB
1056
+ ShowClusterStats=0
1057
+
1058
+
1059
+ # Some graphical reports are followed by the data array of values.
1060
+ # If you don't want this array (to reduce report size for example), you can
1061
+ # set thoose options to 0.
1062
+ # Possible values: 0 or 1
1063
+ # Default: 1
1064
+ #
1065
+ # Data array values for the ShowMonthStats report
1066
+ AddDataArrayMonthStats=1
1067
+ # Data array values for the ShowDaysOfMonthStats report
1068
+ AddDataArrayShowDaysOfMonthStats=1
1069
+ # Data array values for the ShowDaysOfWeekStats report
1070
+ AddDataArrayShowDaysOfWeekStats=1
1071
+ # Data array values for the ShowHoursStats report
1072
+ AddDataArrayShowHoursStats=1
1073
+
1074
+
1075
+ # In the Origin chart, you have stats on where your hits came from. You can
1076
+ # includes hits on pages that comes from pages of same sites in this chart.
1077
+ # Possible values: 0 or 1
1078
+ # Default: 0
1079
+ #
1080
+ IncludeInternalLinksInOriginSection=0
1081
+
1082
+
1083
+ # Following parameter can be used to choose maximum number of lines shown for
1084
+ # the particular following report.
1085
+ #
1086
+ # Stats by countries/domains
1087
+ MaxNbOfDomain = 10
1088
+ MinHitDomain = 1
1089
+ # Stats by hosts
1090
+ MaxNbOfHostsShown = 10
1091
+ MinHitHost = 1
1092
+ # Stats by authenticated users
1093
+ MaxNbOfLoginShown = 10
1094
+ MinHitLogin = 1
1095
+ # Stats by robots
1096
+ MaxNbOfRobotShown = 10
1097
+ MinHitRobot = 1
1098
+ # Stats by pages
1099
+ MaxNbOfPageShown = 10
1100
+ MinHitFile = 1
1101
+ # Stats by OS
1102
+ MaxNbOfOsShown = 10
1103
+ MinHitOs = 1
1104
+ # Stats by browsers
1105
+ MaxNbOfBrowsersShown = 10
1106
+ MinHitBrowser = 1
1107
+ # Stats by screen size
1108
+ MaxNbOfScreenSizesShown = 5
1109
+ MinHitScreenSize = 1
1110
+ # Stats by window size (following 2 parameters are not yet used)
1111
+ MaxNbOfWindowSizesShown = 5
1112
+ MinHitWindowSize = 1
1113
+ # Stats by referers
1114
+ MaxNbOfRefererShown = 10
1115
+ MinHitRefer = 1
1116
+ # Stats for keyphrases
1117
+ MaxNbOfKeyphrasesShown = 10
1118
+ MinHitKeyphrase = 1
1119
+ # Stats for keywords
1120
+ MaxNbOfKeywordsShown = 10
1121
+ MinHitKeyword = 1
1122
+ # Stats for sender or receiver emails
1123
+ MaxNbOfEMailsShown = 20
1124
+ MinHitEMail = 1
1125
+
1126
+
1127
+ # Choose if you want the week report to start on sunday or monday
1128
+ # Possible values:
1129
+ # 0 - Week start on sunday
1130
+ # 1 - Week start on monday
1131
+ # Default: 1
1132
+ #
1133
+ FirstDayOfWeek=1
1134
+
1135
+
1136
+ # List of visible flags that links to other language translations.
1137
+ # See Lang parameter for list of allowed flag/language codes.
1138
+ # If you don't want any flag link, set ShowFlagLinks to "".
1139
+ # This parameter is used only if ShowMenu parameter is set to 1.
1140
+ # Possible values: "" or "language_codes_separated_by_space"
1141
+ # Example: "en es fr nl de"
1142
+ # Default: ""
1143
+ #
1144
+ ShowFlagLinks=""
1145
+
1146
+
1147
+ # Each URL, shown in stats report views, are links you can click.
1148
+ # Possible values: 0 or 1
1149
+ # Default: 1
1150
+ #
1151
+ ShowLinksOnUrl=1
1152
+
1153
+
1154
+ # When AWStats build HTML links in its report pages, it starts thoose link
1155
+ # with "http://". However some links might be HTTPS links, so you can enter
1156
+ # here the root of all your HTTPS links. If all your site is a SSL web site,
1157
+ # just enter "/".
1158
+ # This parameter is not used if ShowLinksOnUrl is 0.
1159
+ # Example: "/shopping"
1160
+ # Example: "/"
1161
+ # Default: ""
1162
+ #
1163
+ UseHTTPSLinkForUrl=""
1164
+
1165
+
1166
+ # Maximum length of URL part shown on stats page (number of characters).
1167
+ # This affects only URL visible text, link still work.
1168
+ # Default: 64
1169
+ #
1170
+ MaxLengthOfShownURL=64
1171
+
1172
+
1173
+ # You can enter HTML code that will be added at the top of AWStats reports.
1174
+ # Default: ""
1175
+ #
1176
+ HTMLHeadSection=""
1177
+
1178
+
1179
+ # You can enter HTML code that will be added at the end of AWStats reports.
1180
+ # Great to add advert ban.
1181
+ # Default: ""
1182
+ #
1183
+ HTMLEndSection=""
1184
+
1185
+
1186
+ # You can set Logo and LogoLink to use your own logo.
1187
+ # Logo must be the name of image file (must be in $DirIcons/other directory).
1188
+ # LogoLink is the expected URL when clicking on Logo.
1189
+ # Default: "awstats_logo6.png"
1190
+ #
1191
+ Logo="awstats_logo6.png"
1192
+ LogoLink="http://awstats.sourceforge.net"
1193
+
1194
+
1195
+ # Value of maximum bar width/height for horizontal/vertical HTML graphics bar.
1196
+ # Default: 260/90
1197
+ #
1198
+ BarWidth = 260
1199
+ BarHeight = 90
1200
+
1201
+
1202
+ # You can ask AWStats to use a particular CSS (Cascading Style Sheet) to
1203
+ # change its look. To create a style sheet, you can use samples provided with
1204
+ # AWStats in wwwroot/css directory.
1205
+ # Example: "/awstatscss/awstats_bw.css"
1206
+ # Example: "/css/awstats_bw.css"
1207
+ # Default: ""
1208
+ #
1209
+ StyleSheet=""
1210
+
1211
+
1212
+ # Those colors parameters can be used (if StyleSheet parameter is not used)
1213
+ # to change AWStats look.
1214
+ # Example: color_name="RRGGBB" # RRGGBB is Red Green Blue components in Hex
1215
+ #
1216
+ color_Background="FFFFFF" # Background color for main page (Default = "FFFFFF")
1217
+ color_TableBGTitle="CCCCDD" # Background color for table title (Default = "CCCCDD")
1218
+ color_TableTitle="000000" # Table title font color (Default = "000000")
1219
+ color_TableBG="CCCCDD" # Background color for table (Default = "CCCCDD")
1220
+ color_TableRowTitle="FFFFFF" # Table row title font color (Default = "FFFFFF")
1221
+ color_TableBGRowTitle="ECECEC" # Background color for row title (Default = "ECECEC")
1222
+ color_TableBorder="ECECEC" # Table border color (Default = "ECECEC")
1223
+ color_text="000000" # Color of text (Default = "000000")
1224
+ color_textpercent="606060" # Color of text for percent values (Default = "606060")
1225
+ color_titletext="000000" # Color of text title within colored Title Rows (Default = "000000")
1226
+ color_weekend="EAEAEA" # Color for week-end days (Default = "EAEAEA")
1227
+ color_link="0011BB" # Color of HTML links (Default = "0011BB")
1228
+ color_hover="605040" # Color of HTML on-mouseover links (Default = "605040")
1229
+ color_u="FFAA66" # Background color for number of unique visitors (Default = "FFAA66")
1230
+ color_v="F4F090" # Background color for number of visites (Default = "F4F090")
1231
+ color_p="4477DD" # Background color for number of pages (Default = "4477DD")
1232
+ color_h="66DDEE" # Background color for number of hits (Default = "66DDEE")
1233
+ color_k="2EA495" # Background color for number of bytes (Default = "2EA495")
1234
+ color_s="8888DD" # Background color for number of search (Default = "8888DD")
1235
+ color_e="CEC2E8" # Background color for number of entry pages (Default = "CEC2E8")
1236
+ color_x="C1B2E2" # Background color for number of exit pages (Default = "C1B2E2")
1237
+
1238
+
1239
+
1240
+ #-----------------------------------------------------------------------------
1241
+ # PLUGINS
1242
+ #-----------------------------------------------------------------------------
1243
+
1244
+ # Add here all plugins file you want to load.
1245
+ # Plugin files must be .pm files stored in 'plugins' directory.
1246
+ # Uncomment LoadPlugin lines to enable a plugin after checking that perl
1247
+ # modules required by the plugin are installed.
1248
+
1249
+ # Plugin: Tooltips
1250
+ # Perl modules required: None
1251
+ # Add some tooltips help on HTML report pages.
1252
+ # Note that enabled this kind of help will increased HTML report pages size,
1253
+ # so server load and bandwidth.
1254
+ #
1255
+ #LoadPlugin="tooltips"
1256
+
1257
+ # Plugin: DecodeUTFKeys
1258
+ # Perl modules required: Encode and URI::Escape
1259
+ # Allow AWStats to show correctly (in language charset) keywords/keyphrases
1260
+ # strings even if they were UTF8 coded by the referer search engine.
1261
+ #
1262
+ LoadPlugin="decodeutfkeys"
1263
+
1264
+ # Plugin: IPv6
1265
+ # Perl modules required: Net::IP and Net::DNS
1266
+ # This plugin gives AWStats capability to make reverse DNS lookup on IPv6
1267
+ # addresses.
1268
+ # Note: If you are interesting in having country report, you should use the
1269
+ # geoipfree or geoip plugin instead of enabled reverse DNS lookup.
1270
+ #
1271
+ #LoadPlugin="ipv6"
1272
+
1273
+ # Plugin: HashFiles
1274
+ # Perl modules required: Storable
1275
+ # AWStats DNS cache files are read/saved as native hash files. This increase
1276
+ # DNS cache files loading speed, above all for very large web sites.
1277
+ #
1278
+ #LoadPlugin="hashfiles"
1279
+
1280
+ # Plugin: GeoIP
1281
+ # Perl modules required: Geo::IP or Geo::IP::PurePerl (from Maxmind)
1282
+ # Country chart is built from an Internet IP-Country database.
1283
+ # This plugin is useless for intranet only log files.
1284
+ # Note: You must choose between using this plugin (need Perl Geo::IP module
1285
+ # from Maxmind, database more up to date) or the GeoIPfree plugin (need
1286
+ # Perl Geo::IPfree module, database less up to date).
1287
+ # This plugin reduces AWStats speed of 8% !
1288
+ #
1289
+ #LoadPlugin="geoip GEOIP_STANDARD /pathto/GeoIP.dat"
1290
+
1291
+ # Plugin: GeoIPfree
1292
+ # Perl modules required: Geo::IPfree version 0.2+ (from Graciliano M.P.)
1293
+ # Country chart is built from an Internet IP-Country database.
1294
+ # This plugin is useless for intranet only log files.
1295
+ # Note: You must choose between using this plugin (need Perl Geo::IPfree
1296
+ # module, database less up to date) or the GeoIP plugin (need Perl Geo::IP
1297
+ # module from Maxmind, database more up to date).
1298
+ # Note: Activestate provide a corrupted version of Geo::IPfree 0.2 Perl
1299
+ # module, so install it from elsewhere (from www.cpan.org for example).
1300
+ # This plugin reduces AWStats speed of 10% !
1301
+ #
1302
+ #LoadPlugin="geoipfree"
1303
+
1304
+ # Plugin: GeoIP_Region_Maxmind
1305
+ # Perl modules required: Geo::IP (from Maxmind)
1306
+ # This plugin add a chart of hits by regions. Only regions for US and
1307
+ # Canada can be detected.
1308
+ # Note: This plugin need Maxmind GeoIP Perl module AND the region database.
1309
+ # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState
1310
+ # on Windows but it works great on Linux with default Perl.
1311
+ # You need to purchase a license from Maxmind to get/use the Region database.
1312
+ # This plugin reduces AWStats speed.
1313
+ #
1314
+ #LoadPlugin="geoip_region_maxmind GEOIP_STANDARD /pathto/GeoIPRegion.dat"
1315
+
1316
+ # Plugin: GeoIP_City_Maxmind
1317
+ # Perl modules required: Geo::IP (from Maxmind)
1318
+ # This plugin add a chart of hits by cities (with country and regions
1319
+ # informations for major countries).
1320
+ # Note: This plugin need Maxmind GeoIP Perl module AND the city database.
1321
+ # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState
1322
+ # on Windows but it works great on Linux with default Perl.
1323
+ # You need to purchase a license from Maxmind to get/use the City database.
1324
+ # This plugin reduces AWStats speed.
1325
+ #
1326
+ #LoadPlugin="geoip_city_maxmind GEOIP_STANDARD /pathto/GeoIPCity.dat"
1327
+
1328
+ # Plugin: GeoIP_ISP_Maxmind
1329
+ # Perl modules required: Geo::IP (from Maxmind)
1330
+ # This plugin add a chart of hits by ISP.
1331
+ # Note: This plugin need Maxmind GeoIP Perl module AND the ISP database.
1332
+ # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState
1333
+ # on Windows but it works great on Linux with default Perl.
1334
+ # You need to purchase a license from Maxmind to get/use the ISP database.
1335
+ # This plugin reduces AWStats speed.
1336
+ #
1337
+ #LoadPlugin="geoip_isp_maxmind GEOIP_STANDARD /pathto/GeoIPISP.dat"
1338
+
1339
+ # Plugin: GeoIP_Org_Maxmind
1340
+ # Perl modules required: Geo::IP (from Maxmind)
1341
+ # This plugin add a chart of hits by Organization name
1342
+ # Note: This plugin need Maxmind GeoIP Perl module AND the Org database.
1343
+ # Note: I get some problem with Maxmind Geo::IP Perl module with ActiveState
1344
+ # on Windows but it works great on Linux with default Perl.
1345
+ # You need to purchase a license from Maxmind to get/use the Org database.
1346
+ # This plugin reduces AWStats speed.
1347
+ #
1348
+ #LoadPlugin="geoip_org_maxmind GEOIP_STANDARD /pathto/GeoIPOrg.dat"
1349
+
1350
+ # Plugin: UserInfo
1351
+ # Perl modules required: None
1352
+ # Add a text (Firtname, Lastname, Office Department, ...) in authenticated user
1353
+ # reports for each login value.
1354
+ # A text file called userinfo.myconfig.txt, with two fields (first is login,
1355
+ # second is text to show, separated by a tab char) must be created in DirData
1356
+ # directory.
1357
+ #
1358
+ #LoadPlugin="userinfo"
1359
+
1360
+ # Plugin: HostInfo
1361
+ # Perl modules required: Net::XWhois
1362
+ # Add a column into host chart with a link to open a popup window that shows
1363
+ # info on host (like whois records).
1364
+ #
1365
+ #LoadPlugin="hostinfo"
1366
+
1367
+ # Plugin: ClusterInfo
1368
+ # Perl modules required: None
1369
+ # Add a text (for example a full hostname) in cluster reports for each cluster
1370
+ # number.
1371
+ # A text file called clusterinfo.myconfig.txt, with two fields (first is
1372
+ # cluster number, second is text to show) separated by a tab char. must be
1373
+ # created into DirData directory.
1374
+ # Note this plugin is useless if ShowClusterStats is set to 0 or if you don't
1375
+ # use a personalized log format that contains %cluster tag.
1376
+ #
1377
+ #LoadPlugin="clusterinfo"
1378
+
1379
+ # Plugin: UrlAliases
1380
+ # Perl modules required: None
1381
+ # Add a text (Page title, description...) in URL reports before URL value.
1382
+ # A text file called urlalias.myconfig.txt, with two fields (first is URL,
1383
+ # second is text to show, separated by a tab char) must be created into
1384
+ # DirData directory.
1385
+ #
1386
+ #LoadPlugin="urlalias"
1387
+
1388
+ # Plugin: TimeHiRes
1389
+ # Perl modules required: Time::HiRes (if Perl < 5.8)
1390
+ # Time reported by -showsteps option is in millisecond. For debug purpose.
1391
+ #
1392
+ #LoadPlugin="timehires"
1393
+
1394
+ # Plugin: TimeZone
1395
+ # Perl modules required: Time::Local
1396
+ # Allow AWStats to correct a bad timezone for user of some IIS that use
1397
+ # GMT date in its log instead of local server time.
1398
+ # This module is useless for Apache and most IIS version.
1399
+ # This plugin reduces AWStats speed of 40% !!!!!!!
1400
+ #
1401
+ #LoadPlugin="timezone +2"
1402
+
1403
+ # Plugin: Rawlog
1404
+ # Perl modules required: None
1405
+ # This plugin adds a form in AWStats main page to allow users to see raw
1406
+ # content of current log files. A filter is also available.
1407
+ #
1408
+ #LoadPlugin="rawlog"
1409
+
1410
+ # Plugin: GraphApplet
1411
+ # Perl modules required: None
1412
+ # Supported charts are built by a 3D graphic applet.
1413
+ #
1414
+ #LoadPlugin="graphapplet /awstatsclasses" # EXPERIMENTAL FEATURE
1415
+
1416
+
1417
+
1418
+ #-----------------------------------------------------------------------------
1419
+ # EXTRA SECTIONS
1420
+ #-----------------------------------------------------------------------------
1421
+
1422
+ # You can define your own charts, you choose here what are rows and columns
1423
+ # keys. This feature is particularly usefull for marketing purpose, tracking
1424
+ # products orders for example.
1425
+ # For this, edit all parameters of Extra section. Each set of parameter is a
1426
+ # different chart. For several charts, duplicate section changing the number.
1427
+ # Note: Each Extra section reduces AWStats speed by 8%.
1428
+ #
1429
+ # WARNING: A wrong setup of Extra section might result in too large arrays
1430
+ # that will consume all your memory, making AWStats unusable after several
1431
+ # updates, so be sure to setup it correctly.
1432
+ # In most cases, you don't need this feature.
1433
+ #
1434
+ # ExtraSectionNameX is title of your personalized chart.
1435
+ # ExtraSectionCodeFilterX is list of codes the record code field must match.
1436
+ # Put an empty string for no test on code.
1437
+ # ExtraSectionConditionX are conditions you can use to count or not the hit,
1438
+ # Use one of the field condition (URL,URLWITHQUERY,QUERY_STRING,REFERER,UA,
1439
+ # HOST,extraX) and a regex to match, after a coma. Use "||" for "OR".
1440
+ # ExtraSectionFirstColumnTitleX is the first column title of the chart.
1441
+ # ExtraSectionFirstColumnValuesX is a string to tell AWStats which field to
1442
+ # extract value from (URL,URLWITHQUERY,QUERY_STRING,REFERER,UA,HOST,extraX)
1443
+ # and how to extract the value (using regex syntax). Each different value
1444
+ # found will appear in first column of report on a different row. Be sure
1445
+ # that list of different possible values will not grow indefinitely.
1446
+ # ExtraSectionFirstColumnFormatX is the string used to write value.
1447
+ # ExtraSectionStatTypesX are things you want to count. You can use standard
1448
+ # code letters (P for pages,H for hits,B for bandwidth,L for last access).
1449
+ # ExtraSectionAddAverageRowX add a row at bottom of chart with average values.
1450
+ # ExtraSectionAddSumRowX add a row at bottom of chart with sum values.
1451
+ # MaxNbOfExtraX is maximum number of rows shown in chart.
1452
+ # MinHitExtraX is minimum number of hits required to be shown in chart.
1453
+ #
1454
+
1455
+ # Example to report the 20 products the most ordered by "order.cgi" script
1456
+ #ExtraSectionName1="Product orders"
1457
+ #ExtraSectionCodeFilter1="200 304"
1458
+ #ExtraSectionCondition1="URL,\/cgi\-bin\/order\.cgi||URL,\/cgi\-bin\/order2\.cgi"
1459
+ #ExtraSectionFirstColumnTitle1="Product ID"
1460
+ #ExtraSectionFirstColumnValues1="QUERY_STRING,productid=([^&]+)"
1461
+ #ExtraSectionFirstColumnFormat1="%s"
1462
+ #ExtraSectionStatTypes1=PL
1463
+ #ExtraSectionAddAverageRow1=0
1464
+ #ExtraSectionAddSumRow1=1
1465
+ #MaxNbOfExtra1=20
1466
+ #MinHitExtra1=1
1467
+
1468
+
1469
+ # There is also a global parameter ExtraTrackedRowsLimit that limit the
1470
+ # number of possible rows an ExtraSection can report. This parameter is
1471
+ # here to protect too much memory use when you make a bad setup in your
1472
+ # ExtraSection. It applies to all ExtraSection independently meaning that
1473
+ # none ExtraSection can report more rows than value defined by ExtraTrackedRowsLimit.
1474
+ # If you know an ExtraSection will report more rows than its value, you should
1475
+ # increase this parameter or AWStats will stop with an error.
1476
+ # Example: 2000
1477
+ # Default: 500
1478
+ #
1479
+ ExtraTrackedRowsLimit=500
1480
+
1481
+
1482
+ #-----------------------------------------------------------------------------
1483
+ # INCLUDES
1484
+ #-----------------------------------------------------------------------------
1485
+
1486
+ # You can include other config files using the directive with the name of the
1487
+ # config file.
1488
+ # This is particularly usefull for users who have a lot of virtual servers, so
1489
+ # a lot of config files and want to maintain common values in only one file.
1490
+ # Note that when a variable is defined both in a config file and in an
1491
+ # included file, AWStats will use the last value read for parameters that
1492
+ # contains one value and AWStats will concat all values from both files for
1493
+ # parameters that are lists of value.
1494
+ #
1495
+
1496
+ #Include ""
1497
+