zena 0.15.2 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (284) hide show
  1. data/.gitignore +20 -0
  2. data/CREDITS +27 -0
  3. data/Capfile +3 -0
  4. data/DEVELOPERS +46 -0
  5. data/History.txt +15 -0
  6. data/MIT-LICENSE +19 -0
  7. data/Rakefile +44 -0
  8. data/TODO +24 -0
  9. data/TODO_ZENA_1_0 +23 -0
  10. data/app/controllers/application_controller.rb +3 -0
  11. data/app/controllers/documents_controller.rb +22 -56
  12. data/app/controllers/nodes_controller.rb +42 -27
  13. data/app/controllers/pings_controller.rb +19 -0
  14. data/app/controllers/relations_controller.rb +5 -1
  15. data/app/controllers/sites_controller.rb +1 -46
  16. data/app/controllers/user_sessions_controller.rb +47 -0
  17. data/app/controllers/users_controller.rb +1 -0
  18. data/app/controllers/versions_controller.rb +25 -7
  19. data/app/controllers/virtual_classes_controller.rb +1 -1
  20. data/app/helpers/application_helper.rb +1 -1
  21. data/app/models/comment.rb +2 -1
  22. data/app/models/contact_content.rb +2 -2
  23. data/app/models/data_entry.rb +5 -6
  24. data/app/models/document.rb +14 -10
  25. data/app/models/document_content.rb +4 -6
  26. data/app/models/iformat.rb +2 -2
  27. data/app/models/image_content.rb +6 -9
  28. data/app/models/node.rb +106 -164
  29. data/app/models/page.rb +0 -20
  30. data/app/models/site.rb +42 -12
  31. data/app/models/template.rb +3 -8
  32. data/app/models/template_content.rb +2 -0
  33. data/app/models/text_document.rb +13 -8
  34. data/app/models/user.rb +47 -100
  35. data/app/models/user_session.rb +4 -0
  36. data/app/models/version.rb +1 -1
  37. data/app/views/comments/create.rjs +3 -3
  38. data/app/views/comments/edit.rjs +1 -1
  39. data/app/views/comments/update.rjs +1 -1
  40. data/app/views/nodes/_import_results.rhtml +1 -1
  41. data/app/views/nodes/create.rjs +3 -3
  42. data/app/views/templates/document_create_tabs/_file.rhtml +1 -2
  43. data/app/views/templates/document_create_tabs/_import.rhtml +7 -2
  44. data/app/views/templates/edit_tabs/_document.rhtml +1 -3
  45. data/app/views/templates/edit_tabs/_image.rhtml +1 -3
  46. data/app/views/versions/_tr.rhtml +1 -1
  47. data/app/views/versions/edit.rhtml +2 -26
  48. data/bin/zena +6 -1
  49. data/bricks/delayed_job/README +18 -0
  50. data/bricks/delayed_job/migrate/20091104191643_create_delayed_jobs_table.rb +19 -0
  51. data/bricks/delayed_job/misc/init.rb +8 -0
  52. data/bricks/delayed_job/misc/tasks.rb +2 -0
  53. data/bricks/math/patch/application_helper.rb +1 -1
  54. data/bricks/sphinx/MIT-LICENSE +19 -0
  55. data/bricks/sphinx/README +19 -0
  56. data/bricks/sphinx/lib/use_sphinx.rb +78 -0
  57. data/bricks/sphinx/migrate/20091102171258_add_delta_for_sphinx.rb +9 -0
  58. data/bricks/sphinx/misc/deploy.rb +20 -0
  59. data/bricks/sphinx/misc/sphinx.yml +12 -0
  60. data/bricks/sphinx/misc/tasks.rb +21 -0
  61. data/bricks/sphinx/patch/node.rb +8 -0
  62. data/bricks/tags/lib/has_tags.rb +5 -3
  63. data/bricks/tags/test/zafu/tags.yml +13 -1
  64. data/config/bricks.yml +35 -0
  65. data/config/deploy.rb +8 -1
  66. data/config/environment.rb +1 -1
  67. data/config/environments/production.rb +1 -1
  68. data/config/gems.yml +28 -5
  69. data/config/sphinx.yml +12 -0
  70. data/db/init/base/skins/default/Node-+popupLayout.zafu +1 -16
  71. data/db/migrate/20091026161708_add_persistence_token.rb +13 -0
  72. data/db/migrate/20091101184952_add_session_table.rb +16 -0
  73. data/db/migrate/20091123175137_add_single_access_token.rb +9 -0
  74. data/db/migrate/20091124161608_rebuild_fullpath.rb +11 -0
  75. data/db/schema.rb +21 -8
  76. data/doc/README_FOR_APP +24 -0
  77. data/doc/fixtures.graffle +19568 -0
  78. data/doc/fixtures.pdf +0 -0
  79. data/doc/template/LICENSE +184 -0
  80. data/doc/template/README +37 -0
  81. data/doc/template/allison.css +283 -0
  82. data/doc/template/allison.js +307 -0
  83. data/doc/template/allison.rb +260 -0
  84. data/doc/template/cache/BODY +588 -0
  85. data/doc/template/cache/CLASS_INDEX +4 -0
  86. data/doc/template/cache/CLASS_PAGE +1 -0
  87. data/doc/template/cache/FILE_INDEX +4 -0
  88. data/doc/template/cache/FILE_PAGE +1 -0
  89. data/doc/template/cache/FONTS +1 -0
  90. data/doc/template/cache/FR_INDEX_BODY +1 -0
  91. data/doc/template/cache/IMGPATH +1 -0
  92. data/doc/template/cache/INDEX +1 -0
  93. data/doc/template/cache/JAVASCRIPT +307 -0
  94. data/doc/template/cache/METHOD_INDEX +4 -0
  95. data/doc/template/cache/METHOD_LIST +1 -0
  96. data/doc/template/cache/SRC_PAGE +1 -0
  97. data/doc/template/cache/STYLE +283 -0
  98. data/doc/template/cache/URL +1 -0
  99. data/doc/zafu_changes.yml +29 -0
  100. data/lib/base_additions.rb +1 -1
  101. data/lib/bricks.rb +9 -0
  102. data/lib/bricks/loader.rb +86 -0
  103. data/lib/bricks/requirements_validation.rb +71 -0
  104. data/lib/tasks/zena.rake +42 -4
  105. data/lib/zafu/action.rb +285 -0
  106. data/lib/zafu/ajax.rb +93 -0
  107. data/lib/zafu/attributes.rb +117 -0
  108. data/lib/zafu/calendar.rb +159 -0
  109. data/lib/zafu/context.rb +330 -0
  110. data/lib/zafu/core/html.rb +102 -0
  111. data/lib/zafu/core/move_to_parser.rb +167 -0
  112. data/lib/zafu/dates.rb +58 -0
  113. data/lib/zafu/display.rb +502 -0
  114. data/lib/zafu/eval.rb +66 -0
  115. data/lib/zafu/experimental.rb +66 -0
  116. data/lib/zafu/i18n.rb +64 -0
  117. data/lib/zafu/meta.rb +25 -0
  118. data/lib/zafu/refactor.rb +73 -0
  119. data/lib/zafu/support/context.rb +265 -0
  120. data/lib/zafu/support/dom.rb +145 -0
  121. data/lib/zafu/support/erb.rb +62 -0
  122. data/lib/zafu/support/flow.rb +401 -0
  123. data/lib/zafu/support/forms.rb +461 -0
  124. data/lib/zafu/support/links.rb +306 -0
  125. data/lib/zafu_parser.rb +26 -2
  126. data/lib/zena.rb +34 -15
  127. data/lib/zena/acts/multiversion.rb +2 -2
  128. data/lib/zena/acts/secure.rb +41 -30
  129. data/lib/zena/app.rb +7 -10
  130. data/lib/zena/controller/test_case.rb +12 -7
  131. data/lib/zena/crypto_provider/initial.rb +15 -0
  132. data/lib/zena/db.rb +6 -1
  133. data/lib/zena/deploy.rb +34 -6
  134. data/lib/zena/deploy/logrotate_app.rhtml +9 -0
  135. data/lib/zena/deploy/logrotate_host.rhtml +34 -0
  136. data/lib/zena/deploy/template.rb +1 -9
  137. data/lib/zena/foxy_parser.rb +1 -1
  138. data/lib/zena/info.rb +3 -1
  139. data/lib/zena/migrator.rb +1 -1
  140. data/lib/zena/parser.rb +12 -4
  141. data/lib/zena/parser/zazen_rules.rb +6 -6
  142. data/lib/zena/parser/zena_rules.rb +1 -7
  143. data/lib/zena/routes.rb +5 -5
  144. data/lib/zena/test_controller.rb +7 -2
  145. data/lib/zena/unit/test_case.rb +6 -8
  146. data/lib/zena/use/ajax.rb +10 -10
  147. data/lib/zena/use/authlogic.rb +93 -0
  148. data/lib/zena/use/dyn_attributes.rb +5 -0
  149. data/lib/zena/use/html_tags.rb +16 -34
  150. data/lib/zena/use/i18n.rb +4 -1
  151. data/lib/zena/use/node_query_finders.rb +8 -4
  152. data/lib/zena/use/refactor.rb +8 -20
  153. data/lib/zena/use/relations.rb +1 -0
  154. data/lib/zena/use/rendering.rb +4 -2
  155. data/lib/zena/use/search.rb +52 -0
  156. data/lib/zena/use/test_helper.rb +27 -28
  157. data/lib/zena/use/upload.rb +188 -0
  158. data/lib/zena/use/urls.rb +16 -14
  159. data/lib/zena/use/zafu.rb +16 -63
  160. data/lib/zena/use/zazen.rb +8 -8
  161. data/lib/zena/view/test_case.rb +8 -4
  162. data/locale/en/LC_MESSAGES/zena.mo +0 -0
  163. data/locale/en/zena.po +3 -3
  164. data/public/.htaccess +40 -0
  165. data/public/javascripts/upload-progress.js +17 -8
  166. data/public/javascripts/zena.js +8 -2
  167. data/public/stylesheets/popup.css +1 -0
  168. data/script/about +3 -0
  169. data/script/apache_logging +25 -0
  170. data/script/breakpointer +3 -0
  171. data/script/console +3 -0
  172. data/script/dbconsole +3 -0
  173. data/script/destroy +3 -0
  174. data/script/generate +3 -0
  175. data/script/performance/benchmarker +3 -0
  176. data/script/performance/profiler +3 -0
  177. data/script/plugin +3 -0
  178. data/script/process/inspector +3 -0
  179. data/script/process/reaper +3 -0
  180. data/script/process/spawner +3 -0
  181. data/script/runner +3 -0
  182. data/script/server +3 -0
  183. data/script/set_revision +29 -0
  184. data/spec/controllers/versions_controller_spec.rb +11 -0
  185. data/test/fixtures/files/Node-test.zafu +1 -1
  186. data/test/functional/nodes_controller_test.rb +25 -0
  187. data/test/functional/pings_controller_test.rb +8 -0
  188. data/test/functional/user_sessions_controller_test.rb +59 -0
  189. data/test/functional/users_controller_test.rb +81 -19
  190. data/test/helpers/node_query/filters.yml +5 -0
  191. data/test/helpers/node_query_test.rb +3 -3
  192. data/test/integration/multiple_hosts_test.rb +1 -1
  193. data/test/integration/navigation_test.rb +1 -1
  194. data/test/sites/complex/users.yml +1 -1
  195. data/test/sites/ocean/users.yml +3 -3
  196. data/test/sites/zena/users.yml +5 -4
  197. data/test/test_zena.rb +38 -38
  198. data/test/unit/cached_page_test.rb +2 -2
  199. data/test/unit/comment_test.rb +0 -1
  200. data/test/unit/document_test.rb +23 -11
  201. data/test/unit/helpers/ping_helper_test.rb +4 -0
  202. data/test/unit/multiversion_test.rb +24 -16
  203. data/test/unit/node_test.rb +32 -93
  204. data/test/unit/note_test.rb +9 -0
  205. data/test/unit/page_test.rb +2 -2
  206. data/test/unit/secure_test.rb +2 -12
  207. data/test/unit/site_test.rb +43 -24
  208. data/test/unit/template_test.rb +45 -3
  209. data/test/unit/text_document_test.rb +4 -3
  210. data/test/unit/user_test.rb +13 -33
  211. data/test/unit/zena/db_test.rb +8 -0
  212. data/test/unit/zena/parser/zazen.yml +4 -4
  213. data/test/unit/zena/use/dates_view_methods_test.rb +2 -1
  214. data/test/unit/zena/use/html_tags_test.rb +12 -4
  215. data/test/unit/zena/use/refactor_test.rb +4 -3
  216. data/test/unit/zena/use/rendering_test.rb +1 -0
  217. data/test/unit/zena/use/upload_test.rb +76 -0
  218. data/test/unit/zena/use/urls_test.rb +4 -0
  219. data/test/unit/zena/use/zafu_test.rb +8 -0
  220. data/test/unit/zena/workflow/status_version_test.rb +6 -0
  221. data/test/unit/zena/zena_tags/ajax.yml +4 -4
  222. data/test/unit/zena/zena_tags/basic.yml +21 -10
  223. data/test/unit/zena/zena_tags/relations.yml +0 -6
  224. data/test/unit/zena/zena_tags/rubyless.yml +35 -0
  225. data/test/unit/zena/zena_tags/zazen.yml +4 -4
  226. data/test/unit/zena/zena_tags_test.rb +36 -4
  227. data/vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand +1 -1
  228. data/vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand +2 -3
  229. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/catch_exception.rb +39 -0
  230. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb +102 -58
  231. data/vendor/TextMate/Zena.tmbundle/Support/RubyMate/stdin_dialog.rb +14 -0
  232. data/vendor/TextMate/Zena.tmbundle/info.plist +2 -0
  233. data/zena.gemspec +2085 -0
  234. metadata +265 -90
  235. data/app/controllers/sessions_controller.rb +0 -41
  236. data/app/views/sites/zena_up.html.erb +0 -11
  237. data/config/database.yml +0 -40
  238. data/db/production.sqlite3 +0 -0
  239. data/lib/bricks/patcher.rb +0 -68
  240. data/lib/zena/parser/zena_tags.rb +0 -3562
  241. data/lib/zena/use/authentification.rb +0 -120
  242. data/public/images/ext/contact_pv.png +0 -0
  243. data/public/images/ext/other_pv.png +0 -0
  244. data/public/images/ext/page_pv.png +0 -0
  245. data/public/images/ext/page_tiny.png +0 -0
  246. data/public/images/ext/pdf_pv.png +0 -0
  247. data/public/images/ext/post_pv.png +0 -0
  248. data/public/images/ext/post_tiny.png +0 -0
  249. data/public/images/ext/project_pv.png +0 -0
  250. data/public/images/ext/project_tiny.png +0 -0
  251. data/public/images/ext/tag_pv.png +0 -0
  252. data/public/images/ext/zip_pv.png +0 -0
  253. data/tasks/ann.rake +0 -80
  254. data/tasks/bones.rake +0 -20
  255. data/tasks/gem.rake +0 -201
  256. data/tasks/git.rake +0 -40
  257. data/tasks/notes.rake +0 -27
  258. data/tasks/post_load.rake +0 -34
  259. data/tasks/rdoc.rake +0 -51
  260. data/tasks/rubyforge.rake +0 -55
  261. data/tasks/setup.rb +0 -292
  262. data/tasks/spec.rake +0 -54
  263. data/tasks/svn.rake +0 -47
  264. data/tasks/test.rake +0 -40
  265. data/tasks/zentest.rake +0 -36
  266. data/test/fixtures/comments.yml +0 -126
  267. data/test/fixtures/contact_contents.yml +0 -132
  268. data/test/fixtures/data_entries.yml +0 -65
  269. data/test/fixtures/discussions.yml +0 -48
  270. data/test/fixtures/document_contents.yml +0 -108
  271. data/test/fixtures/dyn_attributes.yml +0 -66
  272. data/test/fixtures/groups.yml +0 -86
  273. data/test/fixtures/groups_users.yml +0 -81
  274. data/test/fixtures/iformats.yml +0 -29
  275. data/test/fixtures/links.yml +0 -313
  276. data/test/fixtures/nodes.yml +0 -2592
  277. data/test/fixtures/relations.yml +0 -126
  278. data/test/fixtures/sites.yml +0 -58
  279. data/test/fixtures/template_contents.yml +0 -172
  280. data/test/fixtures/users.yml +0 -167
  281. data/test/fixtures/versions.yml +0 -1911
  282. data/test/fixtures/virtual_classes.yml +0 -87
  283. data/test/fixtures/zips.yml +0 -15
  284. data/test/functional/sessions_controller_test.rb +0 -73
@@ -8,12 +8,6 @@ set_tags:
8
8
  src: "<r:project><r:show attr='name'/>: <r:set_tags><r:each join=', '><r:show attr='name'/></r:each></r:set_tags></r:project>"
9
9
  res: "cleanWater: art"
10
10
 
11
- tagged:
12
- context:
13
- node: 'art'
14
- src: "<r:tagged><r:each join=', '><r:show attr='name'/></r:each></r:tagged>"
15
- res: "cleanWater, opening"
16
-
17
11
  documents:
18
12
  context:
19
13
  node: 'nature'
@@ -0,0 +1,35 @@
1
+ default:
2
+ context:
3
+ lang: 'en'
4
+ visitor: 'anon'
5
+ node: 'status'
6
+
7
+ author:
8
+ src: "<r:author do='[c_fullname]'>"
9
+ tem: '/var1\.version\.content\.fullname/'
10
+ res: 'Solenopsis Invicta'
11
+
12
+ tagged_relation:
13
+ context:
14
+ node: 'art'
15
+ dev: 'true'
16
+ src: "<r:context select='tagged'><r:each join=', '><r:show attr='name'/></r:each></r:context>"
17
+ res: "cleanWater, opening"
18
+
19
+ tagged_relation:
20
+ context:
21
+ node: 'art'
22
+ dev: 'true'
23
+ src: "<r:tagged foo='bar'><r:each join=', '><r:show attr='name'/></r:each></r:tagged>"
24
+ res: "cleanWater, opening"
25
+
26
+ tagged_rubyless:
27
+ context:
28
+ node: 'status'
29
+ src: "<r:tagged do='keys'><r:each join=', ' do='show'/></r:tagged>"
30
+ res: "sky, blue"
31
+
32
+ optional_hash:
33
+ src: "<r:dummy do='hello' lang='fr'/>"
34
+ tem: "<% if var1 = @node.dummy -%><%= var1.hello({:lang=>\"fr\"}) %><% end -%>"
35
+ res: "Salut poilu!"
@@ -11,19 +11,19 @@ hello:
11
11
  tem: "<%= zazen('Hello *World*') %>"
12
12
  res: "<p>Hello <strong>World</strong></p>"
13
13
 
14
- link_sharp:
14
+ link_anchor:
15
15
  tem: "<%= zazen('see \"\":22#') %>"
16
16
  res: "<p>see <a href=\"#node22\">status title</a></p>"
17
17
 
18
- link_sharp_attribute:
18
+ link_anchor_attribute:
19
19
  tem: "<%= zazen('see \"\":22#[name]') %>"
20
20
  res: "<p>see <a href=\"#status\">status title</a></p>"
21
21
 
22
- link_sharp_in:
22
+ link_anchor_in:
23
23
  tem: "<%= zazen('see \"\":22#[parent/]') %>"
24
24
  res: "<p>see <a href=\"/oo/projects/cleanWater#node22\">status title</a></p>"
25
25
 
26
- link_sharp_in_name:
26
+ link_anchor_in_name:
27
27
  tem: "<%= zazen('see \"\":22#[parent/name]') %>"
28
28
  res: "<p>see <a href=\"/oo/projects/cleanWater#status\">status title</a></p>"
29
29
 
@@ -1,14 +1,43 @@
1
1
  require 'test_helper'
2
2
 
3
+
4
+
3
5
  class ZenaTagsTest < Zena::Controller::TestCase
6
+
7
+
4
8
  yamltest :directories => [:default, "#{Zena::ROOT}/bricks/**/test/zafu"]
5
9
  Section # make sure we load Section links before trying relations
6
10
 
11
+ class ZafuDummy
12
+ include RubyLess::SafeClass
13
+ safe_method [:hello, {:lang => String}] => String
14
+
15
+ def hello(opts)
16
+ case opts[:lang]
17
+ when 'en'
18
+ 'Hi there!'
19
+ when 'fr'
20
+ 'Salut poilu!'
21
+ when 'de'
22
+ 'Grützi!'
23
+ else
24
+ "Sorry, I don't speak #{opts[:lang]}..."
25
+ end
26
+ end
27
+ end
28
+
29
+ class ::Node
30
+ def dummy
31
+ ZafuDummy.new
32
+ end
33
+ end
34
+
35
+ RubyLess::SafeClass.safe_method_for Node, [:dummy] => ZafuDummy
36
+
7
37
  def setup
8
38
  @controller = Zena::TestController.new
9
39
  @request = ActionController::TestRequest.new
10
40
  @response = ActionController::TestResponse.new
11
- $_test_site = 'zena'
12
41
  super
13
42
  end
14
43
 
@@ -22,11 +51,13 @@ class ZenaTagsTest < Zena::Controller::TestCase
22
51
  compiled_files[k] = v
23
52
  end
24
53
  context = yt_get('context', file, test)
54
+ site = sites(context.delete('site') || 'zena')
55
+ $_test_site = site.name
56
+ @request.host = site.host
25
57
  # set context
26
58
  params = {}
27
- $_test_site = context.delete('site') || 'zena'
28
- @request.host = sites_host($_test_site)
29
- params[:user_id] = users_id(context.delete('visitor').to_sym)
59
+ #params[:user_id] = users_id(context.delete('visitor').to_sym)
60
+ params[:user] = context.delete 'visitor'
30
61
  params[:node_id] = nodes_id(context.delete('node').to_sym)
31
62
  params[:prefix] = context.delete('lang')
32
63
  params[:date] = context['ref_date'] ? context.delete('ref_date').to_s : nil
@@ -75,6 +106,7 @@ class ZenaTagsTest < Zena::Controller::TestCase
75
106
 
76
107
  cont = {
77
108
  :user_id => users_id(:anon),
109
+ :user => 'anon',
78
110
  :node_id => nodes_id(:status),
79
111
  :prefix => 'en',
80
112
  :url => '/cache/part',
@@ -24,7 +24,7 @@ export RUBYLIB="$TM_BUNDLE_SUPPORT/RubyMate${RUBYLIB:+:$RUBYLIB}"
24
24
  <key>input</key>
25
25
  <string>document</string>
26
26
  <key>keyEquivalent</key>
27
- <string>@r</string>
27
+ <string>~r</string>
28
28
  <key>name</key>
29
29
  <string>Run all yaml tests</string>
30
30
  <key>output</key>
@@ -7,8 +7,7 @@
7
7
  <key>command</key>
8
8
  <string># Assumes the current file is a yaml test file
9
9
  # Runs with the currently-focused method as the test name
10
-
11
- args=$(${TM_RUBY:=ruby} <<"EOF"
10
+ args=$(${TM_RUBY:=ruby} &lt;&lt;"EOF"
12
11
 
13
12
  n = ENV['TM_LINE_NUMBER'].to_i
14
13
 
@@ -36,7 +35,7 @@ exit_show_tool_tip
36
35
  fi
37
36
 
38
37
  export RUBYLIB="$TM_BUNDLE_SUPPORT/RubyMate${RUBYLIB:+:$RUBYLIB}"
39
- "${TM_RUBY:-ruby}" -- "$TM_BUNDLE_SUPPORT/RubyMate/run_script.rb" $args</string>
38
+ "${TM_RUBY:-ruby}" -- "$TM_BUNDLE_SUPPORT/RubyMate/run_script.rb" $args </string>
40
39
  <key>input</key>
41
40
  <string>document</string>
42
41
  <key>keyEquivalent</key>
@@ -0,0 +1,39 @@
1
+ STDOUT.sync = true
2
+ STDERR.sync = true
3
+
4
+ require 'pathname'
5
+
6
+ at_exit do
7
+ if (e = $!) && !e.instance_of?(SystemExit)
8
+ require "#{ENV['TM_SUPPORT_PATH']}/lib/escape"
9
+ require "cgi"
10
+ io = IO.for_fd(ENV['TM_ERROR_FD'].to_i)
11
+
12
+ io.write "<div id='exception_report' class='framed'>\n"
13
+ io.write "<p id='exception'><strong>#{e.class.name}:</strong> #{CGI.escapeHTML e.message.sub(/`(\w+)'/, '‘\1’').sub(/ -- /, ' — ')}</p>\n"
14
+
15
+ io.write "<blockquote><table border='0' cellspacing='0' cellpadding='0'>\n"
16
+
17
+ e.backtrace.each do |b|
18
+ if b =~ /(.*?):(\d+)(?::in\s*`(.*?)')?/ then
19
+ file, line, method = $1, $2, $3
20
+
21
+ url, display_name = '', 'untitled document';
22
+ if file != '-' && File.exists?(file) then
23
+ file = Pathname.new(file).realpath.to_s
24
+ url = '&url=file://' + e_url(file)
25
+ display_name = File.basename(file)
26
+ end
27
+
28
+ io << "<tr><td><a class='near' href='txmt://open?line=#{line + url}'>"
29
+ io << (method ? "method #{CGI::escapeHTML method}" : '<em>at top level</em>')
30
+ io << "</a></td>\n<td>in <strong>#{CGI::escapeHTML display_name}</strong> at line #{line}</td></tr>\n"
31
+ end
32
+ end
33
+
34
+ io.write "</table></blockquote></div>"
35
+ io.flush
36
+
37
+ exit!
38
+ end
39
+ end
@@ -1,74 +1,118 @@
1
- require "#{ENV["TM_SUPPORT_PATH"]}/lib/scriptmate"
2
- require "cgi"
1
+ require "#{ENV['TM_SUPPORT_PATH']}/lib/scriptmate"
2
+ require 'cgi'
3
3
 
4
- $SCRIPTMATE_VERSION = "$Revision: 8136 $"
4
+ $SCRIPTMATE_VERSION = "$Revision: 6354 $"
5
5
 
6
- class TrivialScript < UserCommand
7
- attr_reader :lang
8
- def initialize(*args)
9
- super
10
- @cmd = "ruby #{ARGV.join(' ')}"
11
- @display_name = ARGV.last
12
- @lang = "Ruby"
13
- end
6
+ class RubyScript < UserScript
7
+ attr_reader :test_name, :base_path, :path, :content
8
+ def lang; 'Ruby' end
9
+ def executable; @hashbang || ENV['TM_RUBY'] || 'ruby' end
10
+ def args; ['-rcatch_exception', '-rstdin_dialog'] end
14
11
  def version_string
15
- ruby_path = %x{ ruby -e 'require "rbconfig"; print Config::CONFIG["bindir"] + "/" + Config::CONFIG["ruby_install_name"]'}
16
- res = "Ruby r" + %x{ ruby -e 'print RUBY_VERSION' }
12
+ ruby_path = %x{ #{executable} -e 'require "rbconfig"; print Config::CONFIG["bindir"] + "/" + Config::CONFIG["ruby_install_name"]'}
13
+ res = "Ruby r" + %x{ #{executable} -e 'print RUBY_VERSION' }
17
14
  res + " (#{ruby_path})"
18
15
  end
19
- def args; ['-rcatch_exception', '-rstdin_dialog'] end
20
- def run
21
- stdin, stdout, stderr, pid = my_popen3(@cmd)
22
- return stdout, stderr, nil, pid
16
+ def test_script?
17
+ @path =~ /(?:\b|_)(?:tc|ts|test)(?:\b|_)/ or
18
+ @content =~ /\brequire\b.+(?:test\/unit|test_helper)/
19
+ end
20
+ def filter_cmd(cmd)
21
+ cmd -= [ENV['TM_FILEPATH']]
22
+ if test_script?
23
+ path_ary = @path.split('/')
24
+ if index = path_ary.rindex('test')
25
+ test_path = File.join(*path_ary[0..index])
26
+ lib_path = File.join( *( path_ary[0..-2] +
27
+ ['..'] * (path_ary.length - index - 1) ) +
28
+ ['lib'] )
29
+ if File.exist? lib_path
30
+ cmd.insert(1, "-I#{e_sh lib_path}:#{e_sh test_path}")
31
+ end
32
+ end
33
+ end
34
+ if index = cmd.rindex('--name')
35
+ @test_name = cmd[index+1]
36
+ @base_path = cmd[index-1].gsub(/\_test.rb$/,'')
37
+ else
38
+ @base_path = cmd.last.gsub(/\_test.rb$/,'')
39
+ end
40
+ @cmd = cmd
23
41
  end
24
42
  end
25
43
 
26
44
  class RubyMate < ScriptMate
45
+ def base_path
46
+ @base_path ||= begin
47
+ path_ary = @command.path.split('/')
48
+ if index = path_ary.rindex('test')
49
+ File.join(*path_ary[0..(index -1)])
50
+ else
51
+ @command.path
52
+ end
53
+ end
54
+ end
55
+
56
+ def run
57
+ super
58
+ rescue => err
59
+ File.open('/Users/gaspard/yaml.log', 'ab') do |f|
60
+ f.puts err.message
61
+ f.puts err.backtrace.join("\n")
62
+ end
63
+ raise err
64
+ end
65
+
66
+ def absolute_path(path)
67
+ if path =~ %r{\A/}
68
+ path
69
+ else
70
+ "#{base_path}/#{path}"
71
+ end
72
+ end
73
+
74
+ def full_method_name(file, method)
75
+ if absolute_path(file) == @command.path
76
+ method
77
+ else
78
+ "#{File.basename(file)} #{method}"
79
+ end
80
+ end
81
+
27
82
  def filter_stdout(str)
28
- if str =~ /\A[.EF]+\Z/
29
- return htmlize(str).gsub(/[EF]+/, "<span style=\"color: red\">\\&</span>") +
30
- "<br style=\"display: none\"/>"
83
+ if @command.test_script? and str =~ /\A[.EF]+\Z/
84
+ # ...F....E....
85
+ htmlize(str).gsub(/[EF]+/, "<span style=\"color: red\">\\&</span>") + "<br style=\"display: none\"/>"
31
86
  else
32
- str.map do |line|
33
- if line =~ /^(\s+)(\S.*?):(\d+)(?::in\s*`(.*?)')?/
34
- indent, file, line, method = $1, $2, $3, $4
35
- url, display_name = '', 'untitled document';
36
- unless file == "-"
37
- indent += " " if file.sub!(/^\[/, "")
38
- url = '&amp;url=file://' + e_url(file)
39
- display_name = File.basename(file)
40
- end
41
- if method =~ /^test_([a-zA-Z]+)_(.*)/
42
- line = 0
43
- yaml_file, test_name = $1, $2
44
- file_path = File.join(File.dirname(ENV['TM_FILEPATH']), "#{yaml_file}.yml")
45
- $file_contents[file_path] ||= File.read(file_path)
46
- $file_contents[file_path].split("\n").each do |l|
47
- line += 1
48
- break if l =~ /^#{test_name}:/
87
+ if @command.test_script?
88
+ str.map do |line|
89
+ if line =~ %r{\(eval\).*in `(test_(\w+?)_(.*))'}
90
+ test_name = $1
91
+ group, method = $2, $3
92
+ begin
93
+ file = File.join(@command.base_path, "#{group}.yml")
94
+ lines = File.read(file).split("\n")
95
+ position = lines.rindex { |l| l =~ %r{^#{method}:} } + 1
96
+ "<span><a class='near' href=\"txmt://open?url=file://#{e_url(file)}&amp;line=#{position}\">#{test_name}</a></span>:#{position}<br/>"
97
+ rescue => err
98
+ line
49
99
  end
50
- line = line.to_s
51
- url = '&amp;url=file://' + e_url(file_path)
100
+ elsif line =~ /^\d+ tests, \d+ assertions, (\d+) failures, (\d+) errors/
101
+ "<span style=\"color: #{$1 + $2 == "00" ? "green" : "red"}\">#{$&}</span><br/>"
102
+ elsif line =~ /Loaded suite/ && @command.test_name
103
+ htmlize(line.chomp + " --name #{@command.test_name}\n")
104
+ elsif line =~ /`yt_|\(eval\)/
105
+ nil
106
+ else
107
+ htmlize(line)
52
108
  end
53
- "#{indent}<a class='near' href='txmt://open?line=#{line + url}'>" +
54
- (method ? "method #{CGI::escapeHTML method}" : '<em>at top level</em>') +
55
- "</a> in <strong>#{CGI::escapeHTML display_name}</strong> at line #{line}<br/>"
56
- elsif line =~ /(\[[^\]]+\]\([^)]+\))\s+\[([\w\_\/\.]+)\:(\d+)\]/
57
- spec, file, line = $1, $2, $3, $4
58
- "<span><a style=\"color: blue;\" href=\"txmt://open?url=file://#{e_url(file)}&amp;line=#{line}\">#{spec}</span>:#{line}<br/>"
59
- elsif line =~ /([\w\_]+).*\[([\w\_\/\.]+)\:(\d+)\]/
60
- method, file, line = $1, $2, $3
61
- "<span><a style=\"color: blue;\" href=\"txmt://open?url=file://#{e_url(file)}&amp;line=#{line}\">#{method}</span>:#{line}<br/>"
62
- elsif line =~ /^\d+ tests, \d+ assertions, (\d+) failures, (\d+) errors\b.*/
63
- "<span style=\"color: #{$1 + $2 == "00" ? "green" : "red"}\">#{$&}</span><br/>"
64
- else
65
- htmlize(line)
66
- end
67
- end.join
109
+ end.compact.join
110
+ else
111
+ htmlize(str)
112
+ end
68
113
  end
69
114
  end
70
115
  end
71
- $file_contents = {}
72
- $file_contents[ENV['TM_FILEPATH']] = STDIN.read
73
- script = TrivialScript.new($file_content)
74
- RubyMate.new(script).emit_html
116
+
117
+ script = RubyScript.new(STDIN.read)
118
+ RubyMate.new(script).emit_html
@@ -0,0 +1,14 @@
1
+ require "ui"
2
+
3
+ class TextMateSTDIN < IO
4
+ def gets(sep = nil)
5
+ TextMate::UI.request_string( :prompt => "Script is Requesting Input:",
6
+ :button1 => "Send" ) + "\n"
7
+ end
8
+ end
9
+
10
+ $TM_STDIN = TextMateSTDIN.new(STDIN.fileno)
11
+ STDIN.reopen($TM_STDIN)
12
+ def gets(sep = nil)
13
+ $TM_STDIN.gets(sep)
14
+ end
@@ -2,6 +2,8 @@
2
2
  <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
3
  <plist version="1.0">
4
4
  <dict>
5
+ <key>deleted</key>
6
+ <array/>
5
7
  <key>name</key>
6
8
  <string>Zena</string>
7
9
  <key>ordering</key>
@@ -0,0 +1,2085 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{zena}
8
+ s.version = "0.16.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Gaspard Bucher"]
12
+ s.date = %q{2010-01-15}
13
+ s.default_executable = %q{zena}
14
+ s.description = %q{zena is a Ruby on Rails CMS (content managment system) with a focus on usability, ease of customization and web 2.0 goodness (application like behaviour).}
15
+ s.email = %q{gaspard@teti.ch}
16
+ s.executables = ["zena"]
17
+ s.extra_rdoc_files = [
18
+ "README.rdoc",
19
+ "TODO"
20
+ ]
21
+ s.files = [
22
+ ".gitignore",
23
+ "CREDITS",
24
+ "Capfile",
25
+ "DEVELOPERS",
26
+ "History.txt",
27
+ "MIT-LICENSE",
28
+ "README.rdoc",
29
+ "Rakefile",
30
+ "TODO",
31
+ "TODO_ZENA_1_0",
32
+ "app/controllers/application_controller.rb",
33
+ "app/controllers/comments_controller.rb",
34
+ "app/controllers/data_entries_controller.rb",
35
+ "app/controllers/discussions_controller.rb",
36
+ "app/controllers/documents_controller.rb",
37
+ "app/controllers/groups_controller.rb",
38
+ "app/controllers/iformats_controller.rb",
39
+ "app/controllers/links_controller.rb",
40
+ "app/controllers/nodes_controller.rb",
41
+ "app/controllers/pings_controller.rb",
42
+ "app/controllers/preferences_controller.rb",
43
+ "app/controllers/relations_controller.rb",
44
+ "app/controllers/sites_controller.rb",
45
+ "app/controllers/user_sessions_controller.rb",
46
+ "app/controllers/users_controller.rb",
47
+ "app/controllers/versions_controller.rb",
48
+ "app/controllers/virtual_classes_controller.rb",
49
+ "app/helpers/application_helper.rb",
50
+ "app/helpers/documents_helper.rb",
51
+ "app/helpers/nodes_helper.rb",
52
+ "app/helpers/versions_helper.rb",
53
+ "app/models/book.rb",
54
+ "app/models/cache.rb",
55
+ "app/models/cached_page.rb",
56
+ "app/models/comment.rb",
57
+ "app/models/contact.rb",
58
+ "app/models/contact_content.rb",
59
+ "app/models/contact_version.rb",
60
+ "app/models/data_entry.rb",
61
+ "app/models/discussion.rb",
62
+ "app/models/document.rb",
63
+ "app/models/document_content.rb",
64
+ "app/models/document_version.rb",
65
+ "app/models/dyn_attribute.rb",
66
+ "app/models/group.rb",
67
+ "app/models/iformat.rb",
68
+ "app/models/image.rb",
69
+ "app/models/image_content.rb",
70
+ "app/models/image_version.rb",
71
+ "app/models/link.rb",
72
+ "app/models/node.rb",
73
+ "app/models/note.rb",
74
+ "app/models/page.rb",
75
+ "app/models/project.rb",
76
+ "app/models/reference.rb",
77
+ "app/models/relation.rb",
78
+ "app/models/relation_proxy.rb",
79
+ "app/models/section.rb",
80
+ "app/models/site.rb",
81
+ "app/models/skin.rb",
82
+ "app/models/template.rb",
83
+ "app/models/template_content.rb",
84
+ "app/models/template_version.rb",
85
+ "app/models/text_document.rb",
86
+ "app/models/text_document_content.rb",
87
+ "app/models/text_document_version.rb",
88
+ "app/models/user.rb",
89
+ "app/models/user_session.rb",
90
+ "app/models/version.rb",
91
+ "app/models/virtual_class.rb",
92
+ "app/models/zip.rb",
93
+ "app/views/comments/_add.rhtml",
94
+ "app/views/comments/_bin.rhtml",
95
+ "app/views/comments/_form.rhtml",
96
+ "app/views/comments/_li.rhtml",
97
+ "app/views/comments/_li_simple.rhtml",
98
+ "app/views/comments/_list.rhtml",
99
+ "app/views/comments/create.rjs",
100
+ "app/views/comments/edit.rjs",
101
+ "app/views/comments/empty_bin.rjs",
102
+ "app/views/comments/index.rhtml",
103
+ "app/views/comments/publish.rjs",
104
+ "app/views/comments/remove.rjs",
105
+ "app/views/comments/reply_to.rjs",
106
+ "app/views/comments/update.rjs",
107
+ "app/views/data_entries/_li.html.erb",
108
+ "app/views/data_entries/create.rjs",
109
+ "app/views/data_entries/destroy.rjs",
110
+ "app/views/data_entries/edit.rjs",
111
+ "app/views/data_entries/index.html.erb",
112
+ "app/views/data_entries/show.html.erb",
113
+ "app/views/data_entries/show.rjs",
114
+ "app/views/data_entries/update.rjs",
115
+ "app/views/discussions/_add.rhtml",
116
+ "app/views/discussions/_form.rhtml",
117
+ "app/views/discussions/_li.rhtml",
118
+ "app/views/discussions/_list.rhtml",
119
+ "app/views/discussions/create.rjs",
120
+ "app/views/discussions/remove.rjs",
121
+ "app/views/discussions/show.rjs",
122
+ "app/views/discussions/update.rjs",
123
+ "app/views/documents/_crop.rhtml",
124
+ "app/views/documents/crop_form.rjs",
125
+ "app/views/documents/new.rhtml",
126
+ "app/views/documents/show.rhtml",
127
+ "app/views/groups/_add.rhtml",
128
+ "app/views/groups/_form.rhtml",
129
+ "app/views/groups/_li.rhtml",
130
+ "app/views/groups/create.rjs",
131
+ "app/views/groups/destroy.rjs",
132
+ "app/views/groups/edit.html.erb",
133
+ "app/views/groups/index.rhtml",
134
+ "app/views/groups/show.html.erb",
135
+ "app/views/groups/show.rjs",
136
+ "app/views/iformats/_add.rhtml",
137
+ "app/views/iformats/_form.rhtml",
138
+ "app/views/iformats/_li.rhtml",
139
+ "app/views/iformats/create.rjs",
140
+ "app/views/iformats/destroy.rjs",
141
+ "app/views/iformats/edit.html.erb",
142
+ "app/views/iformats/index.rhtml",
143
+ "app/views/iformats/show.html.erb",
144
+ "app/views/iformats/show.rjs",
145
+ "app/views/iformats/update.rjs",
146
+ "app/views/image/_title.rhtml",
147
+ "app/views/links/_add.rhtml",
148
+ "app/views/links/_form.rhtml",
149
+ "app/views/links/_li.rhtml",
150
+ "app/views/links/_list.rhtml",
151
+ "app/views/links/create.rjs",
152
+ "app/views/links/destroy.rjs",
153
+ "app/views/links/show.rjs",
154
+ "app/views/nodes/404.html",
155
+ "app/views/nodes/500.html",
156
+ "app/views/nodes/_dates.rhtml",
157
+ "app/views/nodes/_edit_attribute.rhtml",
158
+ "app/views/nodes/_gallery.rhtml",
159
+ "app/views/nodes/_groups.rhtml",
160
+ "app/views/nodes/_import_results.rhtml",
161
+ "app/views/nodes/_list_nodes.rhtml",
162
+ "app/views/nodes/_parent.rhtml",
163
+ "app/views/nodes/_position.rhtml",
164
+ "app/views/nodes/_results.rhtml",
165
+ "app/views/nodes/_show_attr.rhtml",
166
+ "app/views/nodes/_table.rhtml",
167
+ "app/views/nodes/clear_order.rjs",
168
+ "app/views/nodes/create.rjs",
169
+ "app/views/nodes/drive.rjs",
170
+ "app/views/nodes/drop.rjs",
171
+ "app/views/nodes/edit.html.erb",
172
+ "app/views/nodes/edit.rjs",
173
+ "app/views/nodes/import.rhtml",
174
+ "app/views/nodes/save_text.rjs",
175
+ "app/views/nodes/search.rjs",
176
+ "app/views/nodes/show.rjs",
177
+ "app/views/nodes/table_update.rjs",
178
+ "app/views/nodes/update.rjs",
179
+ "app/views/nodes/zafu.rjs",
180
+ "app/views/relations/_add.erb",
181
+ "app/views/relations/_form.erb",
182
+ "app/views/relations/_li.erb",
183
+ "app/views/relations/create.rjs",
184
+ "app/views/relations/destroy.rjs",
185
+ "app/views/relations/edit.erb",
186
+ "app/views/relations/index.erb",
187
+ "app/views/relations/new.erb",
188
+ "app/views/relations/show.rjs",
189
+ "app/views/relations/update.rjs",
190
+ "app/views/search/_form.rhtml",
191
+ "app/views/sites/_form.erb",
192
+ "app/views/sites/_li.erb",
193
+ "app/views/sites/clear_cache.rjs",
194
+ "app/views/sites/edit.erb",
195
+ "app/views/sites/index.erb",
196
+ "app/views/sites/show.rjs",
197
+ "app/views/sites/update.rjs",
198
+ "app/views/templates/defaults/+adminLayout.zafu",
199
+ "app/views/templates/defaults/+login.zafu",
200
+ "app/views/templates/document_create_tabs/_file.rhtml",
201
+ "app/views/templates/document_create_tabs/_import.rhtml",
202
+ "app/views/templates/document_create_tabs/_template.rhtml",
203
+ "app/views/templates/document_create_tabs/_text_doc.rhtml",
204
+ "app/views/templates/drive_tabs/_drive.rhtml",
205
+ "app/views/templates/drive_tabs/_help.rhtml",
206
+ "app/views/templates/drive_tabs/_links.rhtml",
207
+ "app/views/templates/edit_tabs/_contact.rhtml",
208
+ "app/views/templates/edit_tabs/_custom.rhtml",
209
+ "app/views/templates/edit_tabs/_document.rhtml",
210
+ "app/views/templates/edit_tabs/_help.rhtml",
211
+ "app/views/templates/edit_tabs/_image.rhtml",
212
+ "app/views/templates/edit_tabs/_template.rhtml",
213
+ "app/views/templates/edit_tabs/_text.rhtml",
214
+ "app/views/templates/edit_tabs/_textdocument.rhtml",
215
+ "app/views/templates/edit_tabs/_title.rhtml",
216
+ "app/views/users/_add.rhtml",
217
+ "app/views/users/_form.rhtml",
218
+ "app/views/users/_li.rhtml",
219
+ "app/views/users/change_info.rjs",
220
+ "app/views/users/change_password.rjs",
221
+ "app/views/users/create.rjs",
222
+ "app/views/users/index.rhtml",
223
+ "app/views/users/preferences.html.erb",
224
+ "app/views/users/show.rjs",
225
+ "app/views/users/update.rjs",
226
+ "app/views/versions/_li.rhtml",
227
+ "app/views/versions/_list.rhtml",
228
+ "app/views/versions/_tr.rhtml",
229
+ "app/views/versions/backup.rjs",
230
+ "app/views/versions/css_preview.rjs",
231
+ "app/views/versions/destroy.rjs",
232
+ "app/views/versions/diff.rjs",
233
+ "app/views/versions/edit.rhtml",
234
+ "app/views/versions/preview.rjs",
235
+ "app/views/versions/show.rjs",
236
+ "app/views/versions/update.rjs",
237
+ "app/views/virtual_classes/_add.erb",
238
+ "app/views/virtual_classes/_form.erb",
239
+ "app/views/virtual_classes/_li.erb",
240
+ "app/views/virtual_classes/create.rjs",
241
+ "app/views/virtual_classes/destroy.rjs",
242
+ "app/views/virtual_classes/index.erb",
243
+ "app/views/virtual_classes/new.erb",
244
+ "app/views/virtual_classes/show.rjs",
245
+ "app/views/virtual_classes/update.rjs",
246
+ "bin/zena",
247
+ "bricks/captcha/MIT-LICENSE",
248
+ "bricks/captcha/README",
249
+ "bricks/captcha/patch/application_controller.rb",
250
+ "bricks/captcha/patch/application_helper.rb",
251
+ "bricks/captcha/patch/site.rb",
252
+ "bricks/captcha/zafu/captcha.rb",
253
+ "bricks/delayed_job/README",
254
+ "bricks/delayed_job/migrate/20091104191643_create_delayed_jobs_table.rb",
255
+ "bricks/delayed_job/misc/init.rb",
256
+ "bricks/delayed_job/misc/tasks.rb",
257
+ "bricks/math/patch/application_helper.rb",
258
+ "bricks/sphinx/MIT-LICENSE",
259
+ "bricks/sphinx/README",
260
+ "bricks/sphinx/lib/use_sphinx.rb",
261
+ "bricks/sphinx/migrate/20091102171258_add_delta_for_sphinx.rb",
262
+ "bricks/sphinx/misc/deploy.rb",
263
+ "bricks/sphinx/misc/sphinx.yml",
264
+ "bricks/sphinx/misc/tasks.rb",
265
+ "bricks/sphinx/patch/node.rb",
266
+ "bricks/tags/README",
267
+ "bricks/tags/lib/has_tags.rb",
268
+ "bricks/tags/patch/node.rb",
269
+ "bricks/tags/test/sites/zena/links.yml",
270
+ "bricks/tags/test/unit/tags_test.rb",
271
+ "bricks/tags/test/zafu/tags.yml",
272
+ "bricks/toto.zip",
273
+ "config/boot.rb",
274
+ "config/bricks.yml",
275
+ "config/database_example.yml",
276
+ "config/deploy.rb",
277
+ "config/environment.rb",
278
+ "config/environments/development.rb",
279
+ "config/environments/production.rb",
280
+ "config/environments/test.rb",
281
+ "config/gems.yml",
282
+ "config/initializers/mime_types.rb",
283
+ "config/initializers/zena.rb",
284
+ "config/mongrel_upload_progress.conf",
285
+ "config/routes.rb",
286
+ "config/sphinx.yml",
287
+ "db/init/base/help.en.zml",
288
+ "db/init/base/help.fr.zml",
289
+ "db/init/base/skins.zml",
290
+ "db/init/base/skins/default.zml",
291
+ "db/init/base/skins/default/Node-+adminLayout.zafu",
292
+ "db/init/base/skins/default/Node-+index.zafu",
293
+ "db/init/base/skins/default/Node-+login.zafu",
294
+ "db/init/base/skins/default/Node-+notFound.zafu",
295
+ "db/init/base/skins/default/Node-+popupLayout.zafu",
296
+ "db/init/base/skins/default/Node-+search.zafu",
297
+ "db/init/base/skins/default/Node-tree.zafu",
298
+ "db/init/base/skins/default/Node.zafu",
299
+ "db/init/base/skins/default/Project.zafu",
300
+ "db/init/base/skins/default/favicon.png",
301
+ "db/init/base/skins/default/notes.zafu",
302
+ "db/init/base/skins/default/style.css",
303
+ "db/migrate/001_create_base.rb",
304
+ "db/migrate/002_add_time_zone_to_users.rb",
305
+ "db/migrate/003_add_custom_base_flag.rb",
306
+ "db/migrate/004_rename_template_skin.rb",
307
+ "db/migrate/005_create_cached_pages.rb",
308
+ "db/migrate/006_create_sites.rb",
309
+ "db/migrate/007_replace_id_by_zip.rb",
310
+ "db/migrate/008_user_status.rb",
311
+ "db/migrate/009_fulltext.rb",
312
+ "db/migrate/010_create_template_content.rb",
313
+ "db/migrate/011_project_to_section.rb",
314
+ "db/migrate/012_add_project_id.rb",
315
+ "db/migrate/013_remove_defaults.rb",
316
+ "db/migrate/014_add_sort_field.rb",
317
+ "db/migrate/015_add_dyn_attributes.rb",
318
+ "db/migrate/016_remove_translations.rb",
319
+ "db/migrate/017_rename_authorize.rb",
320
+ "db/migrate/018_add_auth_option.rb",
321
+ "db/migrate/019_remove_user_status.rb",
322
+ "db/migrate/020_create_participation.rb",
323
+ "db/migrate/021_create_relations.rb",
324
+ "db/migrate/022_create_virtual_classes.rb",
325
+ "db/migrate/023_ip_on_anonymous_comment.rb",
326
+ "db/migrate/024_correct_vclass_kpath.rb",
327
+ "db/migrate/025_move_tag_into_vclass.rb",
328
+ "db/migrate/026_rename_templates.rb",
329
+ "db/migrate/027_add_country_to_contacts.rb",
330
+ "db/migrate/028_change_size_of_conten_type_field.rb",
331
+ "db/migrate/029_create_data_entries.rb",
332
+ "db/migrate/030_redit_auto_publish_site_settings.rb",
333
+ "db/migrate/031_create_iformats.rb",
334
+ "db/migrate/032_caches_context_as_hash.rb",
335
+ "db/migrate/033_documents_kpath_change.rb",
336
+ "db/migrate/034_change_file_storage.rb",
337
+ "db/migrate/035_add_status_to_link.rb",
338
+ "db/migrate/036_add_flag_fields_on_nodes.rb",
339
+ "db/migrate/037_add_auto_create_discussion_to_v_class.rb",
340
+ "db/migrate/038_create_site_attributes.rb",
341
+ "db/migrate/039_default_position.rb",
342
+ "db/migrate/040_second_value_for_data_entry.rb",
343
+ "db/migrate/041_add_attributes_to_v_class.rb",
344
+ "db/migrate/042_fix_position_should_be_float.rb",
345
+ "db/migrate/043_move_user_lang_into_participation.rb",
346
+ "db/migrate/044_remove_monolingual_site_option.rb",
347
+ "db/migrate/045_avoid_star_in_templates.rb",
348
+ "db/migrate/046_fix_zazen_image_tag.rb",
349
+ "db/migrate/047_change_default_link_id_to_zero.rb",
350
+ "db/migrate/048_link_source_target_can_be_null.rb",
351
+ "db/migrate/049_fix_publish_from_is_null.rb",
352
+ "db/migrate/050_date_in_links.rb",
353
+ "db/migrate/051_add_exif_tags_to_images.rb",
354
+ "db/migrate/20090825201159_insert_zero_link.rb",
355
+ "db/migrate/20090825201200_merge_bricks_migrations_with_std_migrations.rb",
356
+ "db/migrate/20090924141459_zafu_fix_sept09.rb",
357
+ "db/migrate/20090927125912_allow_null_in_text_fields.rb",
358
+ "db/migrate/20090928133440_no_more_private_nodes.rb",
359
+ "db/migrate/20090928143754_version_status_change.rb",
360
+ "db/migrate/20091001084025_change_status_values_for_comments.rb",
361
+ "db/migrate/20091009084057_add_vhash_in_node.rb",
362
+ "db/migrate/20091013100351_rename_publish_group_to_drive_group.rb",
363
+ "db/migrate/20091014130833_fix_template_title.rb",
364
+ "db/migrate/20091014183726_merge_participation_into_users.rb",
365
+ "db/migrate/20091018200734_add_popup_info_to_image_format.rb",
366
+ "db/migrate/20091026161708_add_persistence_token.rb",
367
+ "db/migrate/20091101184952_add_session_table.rb",
368
+ "db/migrate/20091123175137_add_single_access_token.rb",
369
+ "db/migrate/20091124161608_rebuild_fullpath.rb",
370
+ "db/schema.rb",
371
+ "doc/README_FOR_APP",
372
+ "doc/fixtures.graffle",
373
+ "doc/fixtures.pdf",
374
+ "doc/template/LICENSE",
375
+ "doc/template/README",
376
+ "doc/template/allison.css",
377
+ "doc/template/allison.js",
378
+ "doc/template/allison.rb",
379
+ "doc/template/cache/BODY",
380
+ "doc/template/cache/CLASS_INDEX",
381
+ "doc/template/cache/CLASS_PAGE",
382
+ "doc/template/cache/FILE_INDEX",
383
+ "doc/template/cache/FILE_PAGE",
384
+ "doc/template/cache/FONTS",
385
+ "doc/template/cache/FR_INDEX_BODY",
386
+ "doc/template/cache/IMGPATH",
387
+ "doc/template/cache/INDEX",
388
+ "doc/template/cache/JAVASCRIPT",
389
+ "doc/template/cache/METHOD_INDEX",
390
+ "doc/template/cache/METHOD_LIST",
391
+ "doc/template/cache/SRC_PAGE",
392
+ "doc/template/cache/STYLE",
393
+ "doc/template/cache/URL",
394
+ "doc/zafu_changes.yml",
395
+ "lib/base_additions.rb",
396
+ "lib/bricks.rb",
397
+ "lib/bricks/loader.rb",
398
+ "lib/bricks/requirements_validation.rb",
399
+ "lib/comment_query.rb",
400
+ "lib/core_ext/date_time.rb",
401
+ "lib/core_ext/dir.rb",
402
+ "lib/core_ext/fixnum.rb",
403
+ "lib/core_ext/string.rb",
404
+ "lib/exif_data.rb",
405
+ "lib/fix_rails_layouts.rb",
406
+ "lib/gettext_strings.rb",
407
+ "lib/image_builder.rb",
408
+ "lib/log_recorder/lib/log_recorder.rb",
409
+ "lib/log_recorder/test/log_recorder_test.rb",
410
+ "lib/parser.rb",
411
+ "lib/tasks/capistrano.rake",
412
+ "lib/tasks/zena.rake",
413
+ "lib/tasks/zena.rb",
414
+ "lib/upload_progress_server.rb",
415
+ "lib/webdav_adapter.rb",
416
+ "lib/zafu/action.rb",
417
+ "lib/zafu/ajax.rb",
418
+ "lib/zafu/attributes.rb",
419
+ "lib/zafu/calendar.rb",
420
+ "lib/zafu/context.rb",
421
+ "lib/zafu/core/html.rb",
422
+ "lib/zafu/core/move_to_parser.rb",
423
+ "lib/zafu/dates.rb",
424
+ "lib/zafu/display.rb",
425
+ "lib/zafu/eval.rb",
426
+ "lib/zafu/experimental.rb",
427
+ "lib/zafu/i18n.rb",
428
+ "lib/zafu/meta.rb",
429
+ "lib/zafu/refactor.rb",
430
+ "lib/zafu/support/context.rb",
431
+ "lib/zafu/support/dom.rb",
432
+ "lib/zafu/support/erb.rb",
433
+ "lib/zafu/support/flow.rb",
434
+ "lib/zafu/support/forms.rb",
435
+ "lib/zafu/support/links.rb",
436
+ "lib/zafu_parser.rb",
437
+ "lib/zazen_parser.rb",
438
+ "lib/zena.rb",
439
+ "lib/zena/acts/multiversion.rb",
440
+ "lib/zena/acts/secure.rb",
441
+ "lib/zena/app.rb",
442
+ "lib/zena/code_syntax.rb",
443
+ "lib/zena/controller/test_case.rb",
444
+ "lib/zena/crypto_provider/initial.rb",
445
+ "lib/zena/db.rb",
446
+ "lib/zena/deploy.rb",
447
+ "lib/zena/deploy/awstats.conf.rhtml",
448
+ "lib/zena/deploy/database.rhtml",
449
+ "lib/zena/deploy/httpd.rhtml",
450
+ "lib/zena/deploy/logrotate_app.rhtml",
451
+ "lib/zena/deploy/logrotate_host.rhtml",
452
+ "lib/zena/deploy/start.html",
453
+ "lib/zena/deploy/stats.vhost.rhtml",
454
+ "lib/zena/deploy/template.rb",
455
+ "lib/zena/deploy/vhost.rhtml",
456
+ "lib/zena/deploy/vhost_www.rhtml",
457
+ "lib/zena/fix/mysql_connection.rb",
458
+ "lib/zena/foxy_parser.rb",
459
+ "lib/zena/info.rb",
460
+ "lib/zena/migrator.rb",
461
+ "lib/zena/parser.rb",
462
+ "lib/zena/parser/zafu_rules.rb",
463
+ "lib/zena/parser/zafu_tags.rb",
464
+ "lib/zena/parser/zazen_rules.rb",
465
+ "lib/zena/parser/zazen_tags.rb",
466
+ "lib/zena/parser/zena_rules.rb",
467
+ "lib/zena/routes.rb",
468
+ "lib/zena/test_controller.rb",
469
+ "lib/zena/unit/test_case.rb",
470
+ "lib/zena/use/ajax.rb",
471
+ "lib/zena/use/authlogic.rb",
472
+ "lib/zena/use/calendar.rb",
473
+ "lib/zena/use/dates.rb",
474
+ "lib/zena/use/dyn_attributes.rb",
475
+ "lib/zena/use/error_rendering.rb",
476
+ "lib/zena/use/fixtures.rb",
477
+ "lib/zena/use/grid.rb",
478
+ "lib/zena/use/html_tags.rb",
479
+ "lib/zena/use/i18n.rb",
480
+ "lib/zena/use/nested_attributes_alias.rb",
481
+ "lib/zena/use/node_query_finders.rb",
482
+ "lib/zena/use/refactor.rb",
483
+ "lib/zena/use/relations.rb",
484
+ "lib/zena/use/rendering.rb",
485
+ "lib/zena/use/search.rb",
486
+ "lib/zena/use/test_helper.rb",
487
+ "lib/zena/use/upload.rb",
488
+ "lib/zena/use/urls.rb",
489
+ "lib/zena/use/zafu.rb",
490
+ "lib/zena/use/zazen.rb",
491
+ "lib/zena/view/test_case.rb",
492
+ "locale/en/LC_MESSAGES/zena.mo",
493
+ "locale/en/zena.po",
494
+ "locale/fr/LC_MESSAGES/zena.mo",
495
+ "locale/fr/zena.po",
496
+ "locale/zena.pot",
497
+ "public/.htaccess",
498
+ "public/calendar/calendar-brown.css",
499
+ "public/calendar/calendar-setup.js",
500
+ "public/calendar/calendar.js",
501
+ "public/calendar/iconCalendar.gif",
502
+ "public/calendar/lang/calendar-en-utf8.js",
503
+ "public/calendar/lang/calendar-fr-utf8.js",
504
+ "public/calendar/lang/lang.zip",
505
+ "public/dispatch.cgi",
506
+ "public/dispatch.fcgi",
507
+ "public/dispatch.rb",
508
+ "public/favicon.ico",
509
+ "public/images/accept.png",
510
+ "public/images/action.png",
511
+ "public/images/add.png",
512
+ "public/images/ajax-loader.gif",
513
+ "public/images/anchor.png",
514
+ "public/images/application.png",
515
+ "public/images/application_add.png",
516
+ "public/images/application_cascade.png",
517
+ "public/images/application_delete.png",
518
+ "public/images/application_double.png",
519
+ "public/images/application_edit.png",
520
+ "public/images/application_error.png",
521
+ "public/images/application_form.png",
522
+ "public/images/application_form_add.png",
523
+ "public/images/application_form_delete.png",
524
+ "public/images/application_form_edit.png",
525
+ "public/images/application_form_magnify.png",
526
+ "public/images/application_get.png",
527
+ "public/images/application_go.png",
528
+ "public/images/application_home.png",
529
+ "public/images/application_key.png",
530
+ "public/images/application_lightning.png",
531
+ "public/images/application_link.png",
532
+ "public/images/application_osx.png",
533
+ "public/images/application_osx_terminal.png",
534
+ "public/images/application_put.png",
535
+ "public/images/application_side_boxes.png",
536
+ "public/images/application_side_contract.png",
537
+ "public/images/application_side_expand.png",
538
+ "public/images/application_side_list.png",
539
+ "public/images/application_side_tree.png",
540
+ "public/images/application_split.png",
541
+ "public/images/application_tile_horizontal.png",
542
+ "public/images/application_tile_vertical.png",
543
+ "public/images/application_view_columns.png",
544
+ "public/images/application_view_detail.png",
545
+ "public/images/application_view_gallery.png",
546
+ "public/images/application_view_icons.png",
547
+ "public/images/application_view_list.png",
548
+ "public/images/application_view_tile.png",
549
+ "public/images/application_xp.png",
550
+ "public/images/application_xp_terminal.png",
551
+ "public/images/arrow_branch.png",
552
+ "public/images/arrow_divide.png",
553
+ "public/images/arrow_down.png",
554
+ "public/images/arrow_in.png",
555
+ "public/images/arrow_inout.png",
556
+ "public/images/arrow_join.png",
557
+ "public/images/arrow_left.png",
558
+ "public/images/arrow_merge.png",
559
+ "public/images/arrow_out.png",
560
+ "public/images/arrow_redo.png",
561
+ "public/images/arrow_refresh.png",
562
+ "public/images/arrow_refresh_small.png",
563
+ "public/images/arrow_right.png",
564
+ "public/images/arrow_rotate_anticlockwise.png",
565
+ "public/images/arrow_rotate_clockwise.png",
566
+ "public/images/arrow_switch.png",
567
+ "public/images/arrow_turn_left.png",
568
+ "public/images/arrow_turn_right.png",
569
+ "public/images/arrow_undo.png",
570
+ "public/images/arrow_up.png",
571
+ "public/images/asterisk_orange.png",
572
+ "public/images/asterisk_yellow.png",
573
+ "public/images/attach.png",
574
+ "public/images/award_star_add.png",
575
+ "public/images/award_star_bronze_1.png",
576
+ "public/images/award_star_bronze_2.png",
577
+ "public/images/award_star_bronze_3.png",
578
+ "public/images/award_star_delete.png",
579
+ "public/images/award_star_gold_1.png",
580
+ "public/images/award_star_gold_2.png",
581
+ "public/images/award_star_gold_3.png",
582
+ "public/images/award_star_silver_1.png",
583
+ "public/images/award_star_silver_2.png",
584
+ "public/images/award_star_silver_3.png",
585
+ "public/images/basket.png",
586
+ "public/images/basket_add.png",
587
+ "public/images/basket_delete.png",
588
+ "public/images/basket_edit.png",
589
+ "public/images/basket_error.png",
590
+ "public/images/basket_go.png",
591
+ "public/images/basket_put.png",
592
+ "public/images/basket_remove.png",
593
+ "public/images/bell.png",
594
+ "public/images/bell_add.png",
595
+ "public/images/bell_delete.png",
596
+ "public/images/bell_error.png",
597
+ "public/images/bell_go.png",
598
+ "public/images/bell_link.png",
599
+ "public/images/bin.png",
600
+ "public/images/bin_closed.png",
601
+ "public/images/bin_empty.gif",
602
+ "public/images/bin_empty.png",
603
+ "public/images/bin_full.gif",
604
+ "public/images/bomb.png",
605
+ "public/images/book.png",
606
+ "public/images/book_add.png",
607
+ "public/images/book_addresses.png",
608
+ "public/images/book_delete.png",
609
+ "public/images/book_edit.png",
610
+ "public/images/book_error.png",
611
+ "public/images/book_go.png",
612
+ "public/images/book_key.png",
613
+ "public/images/book_link.png",
614
+ "public/images/book_next.png",
615
+ "public/images/book_open.png",
616
+ "public/images/book_previous.png",
617
+ "public/images/box.png",
618
+ "public/images/brick.png",
619
+ "public/images/brick_add.png",
620
+ "public/images/brick_delete.png",
621
+ "public/images/brick_edit.png",
622
+ "public/images/brick_error.png",
623
+ "public/images/brick_go.png",
624
+ "public/images/brick_link.png",
625
+ "public/images/bricks.png",
626
+ "public/images/briefcase.png",
627
+ "public/images/bug.png",
628
+ "public/images/bug_add.png",
629
+ "public/images/bug_delete.png",
630
+ "public/images/bug_edit.png",
631
+ "public/images/bug_error.png",
632
+ "public/images/bug_go.png",
633
+ "public/images/bug_link.png",
634
+ "public/images/building.png",
635
+ "public/images/building_add.png",
636
+ "public/images/building_delete.png",
637
+ "public/images/building_edit.png",
638
+ "public/images/building_error.png",
639
+ "public/images/building_go.png",
640
+ "public/images/building_key.png",
641
+ "public/images/building_link.png",
642
+ "public/images/bullet_add.png",
643
+ "public/images/bullet_arrow_bottom.png",
644
+ "public/images/bullet_arrow_down.png",
645
+ "public/images/bullet_arrow_top.png",
646
+ "public/images/bullet_arrow_up.png",
647
+ "public/images/bullet_black.png",
648
+ "public/images/bullet_blue.png",
649
+ "public/images/bullet_delete.png",
650
+ "public/images/bullet_disk.png",
651
+ "public/images/bullet_error.png",
652
+ "public/images/bullet_feed.png",
653
+ "public/images/bullet_go.png",
654
+ "public/images/bullet_green.png",
655
+ "public/images/bullet_key.png",
656
+ "public/images/bullet_orange.png",
657
+ "public/images/bullet_picture.png",
658
+ "public/images/bullet_pink.png",
659
+ "public/images/bullet_purple.png",
660
+ "public/images/bullet_red.png",
661
+ "public/images/bullet_star.png",
662
+ "public/images/bullet_toggle_minus.png",
663
+ "public/images/bullet_toggle_plus.png",
664
+ "public/images/bullet_white.png",
665
+ "public/images/bullet_wrench.png",
666
+ "public/images/bullet_yellow.png",
667
+ "public/images/cake.png",
668
+ "public/images/calculator.png",
669
+ "public/images/calculator_add.png",
670
+ "public/images/calculator_delete.png",
671
+ "public/images/calculator_edit.png",
672
+ "public/images/calculator_error.png",
673
+ "public/images/calculator_link.png",
674
+ "public/images/calendar.png",
675
+ "public/images/calendar_add.png",
676
+ "public/images/calendar_delete.png",
677
+ "public/images/calendar_edit.png",
678
+ "public/images/calendar_link.png",
679
+ "public/images/calendar_view_day.png",
680
+ "public/images/calendar_view_month.png",
681
+ "public/images/calendar_view_week.png",
682
+ "public/images/camera.png",
683
+ "public/images/camera_add.png",
684
+ "public/images/camera_delete.png",
685
+ "public/images/camera_edit.png",
686
+ "public/images/camera_error.png",
687
+ "public/images/camera_go.png",
688
+ "public/images/camera_link.png",
689
+ "public/images/camera_small.png",
690
+ "public/images/cancel.png",
691
+ "public/images/car.png",
692
+ "public/images/car_add.png",
693
+ "public/images/car_delete.png",
694
+ "public/images/cart.png",
695
+ "public/images/cart_add.png",
696
+ "public/images/cart_delete.png",
697
+ "public/images/cart_edit.png",
698
+ "public/images/cart_error.png",
699
+ "public/images/cart_go.png",
700
+ "public/images/cart_put.png",
701
+ "public/images/cart_remove.png",
702
+ "public/images/cd.png",
703
+ "public/images/cd_add.png",
704
+ "public/images/cd_burn.png",
705
+ "public/images/cd_delete.png",
706
+ "public/images/cd_edit.png",
707
+ "public/images/cd_eject.png",
708
+ "public/images/cd_go.png",
709
+ "public/images/chart_bar.png",
710
+ "public/images/chart_bar_add.png",
711
+ "public/images/chart_bar_delete.png",
712
+ "public/images/chart_bar_edit.png",
713
+ "public/images/chart_bar_error.png",
714
+ "public/images/chart_bar_link.png",
715
+ "public/images/chart_curve.png",
716
+ "public/images/chart_curve_add.png",
717
+ "public/images/chart_curve_delete.png",
718
+ "public/images/chart_curve_edit.png",
719
+ "public/images/chart_curve_error.png",
720
+ "public/images/chart_curve_go.png",
721
+ "public/images/chart_curve_link.png",
722
+ "public/images/chart_line.png",
723
+ "public/images/chart_line_add.png",
724
+ "public/images/chart_line_delete.png",
725
+ "public/images/chart_line_edit.png",
726
+ "public/images/chart_line_error.png",
727
+ "public/images/chart_line_link.png",
728
+ "public/images/chart_organisation.png",
729
+ "public/images/chart_organisation_add.png",
730
+ "public/images/chart_organisation_delete.png",
731
+ "public/images/chart_pie.png",
732
+ "public/images/chart_pie_add.png",
733
+ "public/images/chart_pie_delete.png",
734
+ "public/images/chart_pie_edit.png",
735
+ "public/images/chart_pie_error.png",
736
+ "public/images/chart_pie_link.png",
737
+ "public/images/clock.png",
738
+ "public/images/clock_add.png",
739
+ "public/images/clock_delete.png",
740
+ "public/images/clock_edit.png",
741
+ "public/images/clock_error.png",
742
+ "public/images/clock_go.png",
743
+ "public/images/clock_link.png",
744
+ "public/images/clock_pause.png",
745
+ "public/images/clock_play.png",
746
+ "public/images/clock_red.png",
747
+ "public/images/clock_stop.png",
748
+ "public/images/cog.png",
749
+ "public/images/cog_add.png",
750
+ "public/images/cog_delete.png",
751
+ "public/images/cog_edit.png",
752
+ "public/images/cog_error.png",
753
+ "public/images/cog_go.png",
754
+ "public/images/coins.png",
755
+ "public/images/coins_add.png",
756
+ "public/images/coins_delete.png",
757
+ "public/images/collection.png",
758
+ "public/images/color_swatch.png",
759
+ "public/images/color_wheel.png",
760
+ "public/images/column_add.png",
761
+ "public/images/column_delete.png",
762
+ "public/images/comment.png",
763
+ "public/images/comment_add.png",
764
+ "public/images/comment_delete.png",
765
+ "public/images/comment_edit.png",
766
+ "public/images/comments.png",
767
+ "public/images/comments_add.png",
768
+ "public/images/comments_delete.png",
769
+ "public/images/comments_red.png",
770
+ "public/images/compress.png",
771
+ "public/images/computer.png",
772
+ "public/images/computer_add.png",
773
+ "public/images/computer_delete.png",
774
+ "public/images/computer_edit.png",
775
+ "public/images/computer_error.png",
776
+ "public/images/computer_go.png",
777
+ "public/images/computer_key.png",
778
+ "public/images/computer_link.png",
779
+ "public/images/connect.png",
780
+ "public/images/contrast.png",
781
+ "public/images/contrast_decrease.png",
782
+ "public/images/contrast_high.png",
783
+ "public/images/contrast_increase.png",
784
+ "public/images/contrast_low.png",
785
+ "public/images/control_eject.png",
786
+ "public/images/control_eject_blue.png",
787
+ "public/images/control_end.png",
788
+ "public/images/control_end_blue.png",
789
+ "public/images/control_equalizer.png",
790
+ "public/images/control_equalizer_blue.png",
791
+ "public/images/control_fastforward.png",
792
+ "public/images/control_fastforward_blue.png",
793
+ "public/images/control_pause.png",
794
+ "public/images/control_pause_blue.png",
795
+ "public/images/control_play.png",
796
+ "public/images/control_play_blue.png",
797
+ "public/images/control_repeat.png",
798
+ "public/images/control_repeat_blue.png",
799
+ "public/images/control_rewind.png",
800
+ "public/images/control_rewind_blue.png",
801
+ "public/images/control_start.png",
802
+ "public/images/control_start_blue.png",
803
+ "public/images/control_stop.png",
804
+ "public/images/control_stop_blue.png",
805
+ "public/images/controller.png",
806
+ "public/images/controller_add.png",
807
+ "public/images/controller_delete.png",
808
+ "public/images/controller_error.png",
809
+ "public/images/creditcards.png",
810
+ "public/images/cross.png",
811
+ "public/images/css.png",
812
+ "public/images/css_add.png",
813
+ "public/images/css_delete.png",
814
+ "public/images/css_go.png",
815
+ "public/images/css_valid.png",
816
+ "public/images/cup.png",
817
+ "public/images/cup_add.png",
818
+ "public/images/cup_delete.png",
819
+ "public/images/cup_edit.png",
820
+ "public/images/cup_error.png",
821
+ "public/images/cup_go.png",
822
+ "public/images/cup_key.png",
823
+ "public/images/cup_link.png",
824
+ "public/images/cursor.png",
825
+ "public/images/cut.png",
826
+ "public/images/cut_red.png",
827
+ "public/images/database.png",
828
+ "public/images/database_add.png",
829
+ "public/images/database_connect.png",
830
+ "public/images/database_delete.png",
831
+ "public/images/database_edit.png",
832
+ "public/images/database_error.png",
833
+ "public/images/database_gear.png",
834
+ "public/images/database_go.png",
835
+ "public/images/database_key.png",
836
+ "public/images/database_lightning.png",
837
+ "public/images/database_link.png",
838
+ "public/images/database_refresh.png",
839
+ "public/images/database_save.png",
840
+ "public/images/database_table.png",
841
+ "public/images/date.png",
842
+ "public/images/date_add.png",
843
+ "public/images/date_delete.png",
844
+ "public/images/date_edit.png",
845
+ "public/images/date_error.png",
846
+ "public/images/date_go.png",
847
+ "public/images/date_link.png",
848
+ "public/images/date_magnify.png",
849
+ "public/images/date_next.png",
850
+ "public/images/date_previous.png",
851
+ "public/images/delete.png",
852
+ "public/images/disconnect.png",
853
+ "public/images/disk.png",
854
+ "public/images/disk_multiple.png",
855
+ "public/images/door.png",
856
+ "public/images/door_in.png",
857
+ "public/images/door_open.png",
858
+ "public/images/door_out.png",
859
+ "public/images/drink.png",
860
+ "public/images/drink_empty.png",
861
+ "public/images/drive.png",
862
+ "public/images/drive_add.png",
863
+ "public/images/drive_burn.png",
864
+ "public/images/drive_cd.png",
865
+ "public/images/drive_cd_empty.png",
866
+ "public/images/drive_delete.png",
867
+ "public/images/drive_disk.png",
868
+ "public/images/drive_edit.png",
869
+ "public/images/drive_error.png",
870
+ "public/images/drive_go.png",
871
+ "public/images/drive_key.png",
872
+ "public/images/drive_link.png",
873
+ "public/images/drive_magnify.png",
874
+ "public/images/drive_network.png",
875
+ "public/images/drive_rename.png",
876
+ "public/images/drive_user.png",
877
+ "public/images/drive_web.png",
878
+ "public/images/dvd.png",
879
+ "public/images/dvd_add.png",
880
+ "public/images/dvd_delete.png",
881
+ "public/images/dvd_edit.png",
882
+ "public/images/dvd_error.png",
883
+ "public/images/dvd_go.png",
884
+ "public/images/dvd_key.png",
885
+ "public/images/dvd_link.png",
886
+ "public/images/email.png",
887
+ "public/images/email_add.png",
888
+ "public/images/email_attach.png",
889
+ "public/images/email_delete.png",
890
+ "public/images/email_edit.png",
891
+ "public/images/email_error.png",
892
+ "public/images/email_go.png",
893
+ "public/images/email_link.png",
894
+ "public/images/email_open.png",
895
+ "public/images/email_open_image.png",
896
+ "public/images/emoticon_evilgrin.png",
897
+ "public/images/emoticon_grin.png",
898
+ "public/images/emoticon_happy.png",
899
+ "public/images/emoticon_smile.png",
900
+ "public/images/emoticon_surprised.png",
901
+ "public/images/emoticon_tongue.png",
902
+ "public/images/emoticon_unhappy.png",
903
+ "public/images/emoticon_waii.png",
904
+ "public/images/emoticon_wink.png",
905
+ "public/images/error.png",
906
+ "public/images/error_add.png",
907
+ "public/images/error_delete.png",
908
+ "public/images/error_go.png",
909
+ "public/images/exclamation.png",
910
+ "public/images/ext/contact.png",
911
+ "public/images/ext/doc.png",
912
+ "public/images/ext/doc_tiny.png",
913
+ "public/images/ext/jpg.png",
914
+ "public/images/ext/jpg_tiny.png",
915
+ "public/images/ext/other.png",
916
+ "public/images/ext/other_tiny.png",
917
+ "public/images/ext/page.png",
918
+ "public/images/ext/pdf.png",
919
+ "public/images/ext/pdf_tiny.png",
920
+ "public/images/ext/png.png",
921
+ "public/images/ext/png_tiny.png",
922
+ "public/images/ext/post.png",
923
+ "public/images/ext/project.png",
924
+ "public/images/ext/rtf.png",
925
+ "public/images/ext/rtf_tiny.png",
926
+ "public/images/ext/tag.png",
927
+ "public/images/ext/xls.png",
928
+ "public/images/ext/xls_tiny.png",
929
+ "public/images/ext/zip.png",
930
+ "public/images/ext/zip_tiny.png",
931
+ "public/images/eye.png",
932
+ "public/images/feed.png",
933
+ "public/images/feed_add.png",
934
+ "public/images/feed_delete.png",
935
+ "public/images/feed_disk.png",
936
+ "public/images/feed_edit.png",
937
+ "public/images/feed_error.png",
938
+ "public/images/feed_go.png",
939
+ "public/images/feed_key.png",
940
+ "public/images/feed_link.png",
941
+ "public/images/feed_magnify.png",
942
+ "public/images/female.png",
943
+ "public/images/film.png",
944
+ "public/images/film_add.png",
945
+ "public/images/film_delete.png",
946
+ "public/images/film_edit.png",
947
+ "public/images/film_error.png",
948
+ "public/images/film_go.png",
949
+ "public/images/film_key.png",
950
+ "public/images/film_link.png",
951
+ "public/images/film_save.png",
952
+ "public/images/find.png",
953
+ "public/images/flag_blue.png",
954
+ "public/images/flag_green.png",
955
+ "public/images/flag_orange.png",
956
+ "public/images/flag_pink.png",
957
+ "public/images/flag_purple.png",
958
+ "public/images/flag_red.png",
959
+ "public/images/flag_yellow.png",
960
+ "public/images/folder.png",
961
+ "public/images/folder_add.png",
962
+ "public/images/folder_bell.png",
963
+ "public/images/folder_brick.png",
964
+ "public/images/folder_bug.png",
965
+ "public/images/folder_camera.png",
966
+ "public/images/folder_database.png",
967
+ "public/images/folder_delete.png",
968
+ "public/images/folder_edit.png",
969
+ "public/images/folder_error.png",
970
+ "public/images/folder_explore.png",
971
+ "public/images/folder_feed.png",
972
+ "public/images/folder_find.png",
973
+ "public/images/folder_go.png",
974
+ "public/images/folder_heart.png",
975
+ "public/images/folder_image.png",
976
+ "public/images/folder_key.png",
977
+ "public/images/folder_lightbulb.png",
978
+ "public/images/folder_link.png",
979
+ "public/images/folder_magnify.png",
980
+ "public/images/folder_page.png",
981
+ "public/images/folder_page_white.png",
982
+ "public/images/folder_palette.png",
983
+ "public/images/folder_picture.png",
984
+ "public/images/folder_star.png",
985
+ "public/images/folder_table.png",
986
+ "public/images/folder_user.png",
987
+ "public/images/folder_wrench.png",
988
+ "public/images/font.png",
989
+ "public/images/font_add.png",
990
+ "public/images/font_delete.png",
991
+ "public/images/font_go.png",
992
+ "public/images/group.png",
993
+ "public/images/group_add.png",
994
+ "public/images/group_admin.png",
995
+ "public/images/group_delete.png",
996
+ "public/images/group_edit.png",
997
+ "public/images/group_error.png",
998
+ "public/images/group_gear.png",
999
+ "public/images/group_go.png",
1000
+ "public/images/group_key.png",
1001
+ "public/images/group_link.png",
1002
+ "public/images/group_pub.png",
1003
+ "public/images/group_site.png",
1004
+ "public/images/heart.png",
1005
+ "public/images/heart_add.png",
1006
+ "public/images/heart_delete.png",
1007
+ "public/images/help.png",
1008
+ "public/images/home.png",
1009
+ "public/images/hourglass.png",
1010
+ "public/images/hourglass_add.png",
1011
+ "public/images/hourglass_delete.png",
1012
+ "public/images/hourglass_go.png",
1013
+ "public/images/hourglass_link.png",
1014
+ "public/images/house.png",
1015
+ "public/images/house_go.png",
1016
+ "public/images/house_link.png",
1017
+ "public/images/html.png",
1018
+ "public/images/html_add.png",
1019
+ "public/images/html_delete.png",
1020
+ "public/images/html_go.png",
1021
+ "public/images/html_valid.png",
1022
+ "public/images/image.png",
1023
+ "public/images/image_add.png",
1024
+ "public/images/image_delete.png",
1025
+ "public/images/image_edit.png",
1026
+ "public/images/image_link.png",
1027
+ "public/images/images.png",
1028
+ "public/images/img_not_found.png",
1029
+ "public/images/information.png",
1030
+ "public/images/ipod.png",
1031
+ "public/images/ipod_cast.png",
1032
+ "public/images/ipod_cast_add.png",
1033
+ "public/images/ipod_cast_delete.png",
1034
+ "public/images/ipod_sound.png",
1035
+ "public/images/joystick.png",
1036
+ "public/images/joystick_add.png",
1037
+ "public/images/joystick_delete.png",
1038
+ "public/images/joystick_error.png",
1039
+ "public/images/key.png",
1040
+ "public/images/key_add.png",
1041
+ "public/images/key_delete.png",
1042
+ "public/images/key_go.png",
1043
+ "public/images/keyboard.png",
1044
+ "public/images/keyboard_add.png",
1045
+ "public/images/keyboard_delete.png",
1046
+ "public/images/keyboard_magnify.png",
1047
+ "public/images/latex_error.png",
1048
+ "public/images/layers.png",
1049
+ "public/images/layout.png",
1050
+ "public/images/layout_add.png",
1051
+ "public/images/layout_content.png",
1052
+ "public/images/layout_delete.png",
1053
+ "public/images/layout_edit.png",
1054
+ "public/images/layout_error.png",
1055
+ "public/images/layout_header.png",
1056
+ "public/images/layout_link.png",
1057
+ "public/images/layout_sidebar.png",
1058
+ "public/images/lightbulb.png",
1059
+ "public/images/lightbulb_add.png",
1060
+ "public/images/lightbulb_delete.png",
1061
+ "public/images/lightbulb_off.png",
1062
+ "public/images/lightning.png",
1063
+ "public/images/lightning_add.png",
1064
+ "public/images/lightning_delete.png",
1065
+ "public/images/lightning_go.png",
1066
+ "public/images/link.png",
1067
+ "public/images/link_add.png",
1068
+ "public/images/link_break.png",
1069
+ "public/images/link_delete.png",
1070
+ "public/images/link_edit.png",
1071
+ "public/images/link_error.png",
1072
+ "public/images/link_go.png",
1073
+ "public/images/lock.png",
1074
+ "public/images/lock_add.png",
1075
+ "public/images/lock_break.png",
1076
+ "public/images/lock_delete.png",
1077
+ "public/images/lock_edit.png",
1078
+ "public/images/lock_go.png",
1079
+ "public/images/lock_open.png",
1080
+ "public/images/lorry.png",
1081
+ "public/images/lorry_add.png",
1082
+ "public/images/lorry_delete.png",
1083
+ "public/images/lorry_error.png",
1084
+ "public/images/lorry_flatbed.png",
1085
+ "public/images/lorry_go.png",
1086
+ "public/images/lorry_link.png",
1087
+ "public/images/magifier_zoom_out.png",
1088
+ "public/images/magnifier.png",
1089
+ "public/images/magnifier_zoom_in.png",
1090
+ "public/images/male.png",
1091
+ "public/images/map.png",
1092
+ "public/images/map_add.png",
1093
+ "public/images/map_delete.png",
1094
+ "public/images/map_edit.png",
1095
+ "public/images/map_go.png",
1096
+ "public/images/map_magnify.png",
1097
+ "public/images/medal_bronze_1.png",
1098
+ "public/images/medal_bronze_2.png",
1099
+ "public/images/medal_bronze_3.png",
1100
+ "public/images/medal_bronze_add.png",
1101
+ "public/images/medal_bronze_delete.png",
1102
+ "public/images/medal_gold_1.png",
1103
+ "public/images/medal_gold_2.png",
1104
+ "public/images/medal_gold_3.png",
1105
+ "public/images/medal_gold_add.png",
1106
+ "public/images/medal_gold_delete.png",
1107
+ "public/images/medal_silver_1.png",
1108
+ "public/images/medal_silver_2.png",
1109
+ "public/images/medal_silver_3.png",
1110
+ "public/images/medal_silver_add.png",
1111
+ "public/images/medal_silver_delete.png",
1112
+ "public/images/money.png",
1113
+ "public/images/money_add.png",
1114
+ "public/images/money_delete.png",
1115
+ "public/images/money_dollar.png",
1116
+ "public/images/money_euro.png",
1117
+ "public/images/money_pound.png",
1118
+ "public/images/money_yen.png",
1119
+ "public/images/monitor.png",
1120
+ "public/images/monitor_add.png",
1121
+ "public/images/monitor_delete.png",
1122
+ "public/images/monitor_edit.png",
1123
+ "public/images/monitor_error.png",
1124
+ "public/images/monitor_go.png",
1125
+ "public/images/monitor_lightning.png",
1126
+ "public/images/monitor_link.png",
1127
+ "public/images/mouse.png",
1128
+ "public/images/mouse_add.png",
1129
+ "public/images/mouse_delete.png",
1130
+ "public/images/mouse_error.png",
1131
+ "public/images/music.png",
1132
+ "public/images/new.png",
1133
+ "public/images/newspaper.png",
1134
+ "public/images/newspaper_add.png",
1135
+ "public/images/newspaper_delete.png",
1136
+ "public/images/newspaper_go.png",
1137
+ "public/images/newspaper_link.png",
1138
+ "public/images/note.png",
1139
+ "public/images/note_add.png",
1140
+ "public/images/note_delete.png",
1141
+ "public/images/note_edit.png",
1142
+ "public/images/note_error.png",
1143
+ "public/images/note_go.png",
1144
+ "public/images/overlays.png",
1145
+ "public/images/package.png",
1146
+ "public/images/package_add.png",
1147
+ "public/images/package_delete.png",
1148
+ "public/images/package_go.png",
1149
+ "public/images/package_green.png",
1150
+ "public/images/package_link.png",
1151
+ "public/images/page.png",
1152
+ "public/images/page_add.png",
1153
+ "public/images/page_attach.png",
1154
+ "public/images/page_code.png",
1155
+ "public/images/page_copy.png",
1156
+ "public/images/page_delete.png",
1157
+ "public/images/page_edit.png",
1158
+ "public/images/page_error.png",
1159
+ "public/images/page_excel.png",
1160
+ "public/images/page_find.png",
1161
+ "public/images/page_gear.png",
1162
+ "public/images/page_go.png",
1163
+ "public/images/page_green.png",
1164
+ "public/images/page_key.png",
1165
+ "public/images/page_lightning.png",
1166
+ "public/images/page_link.png",
1167
+ "public/images/page_paintbrush.png",
1168
+ "public/images/page_paste.png",
1169
+ "public/images/page_red.png",
1170
+ "public/images/page_refresh.png",
1171
+ "public/images/page_save.png",
1172
+ "public/images/page_white.png",
1173
+ "public/images/page_white_acrobat.png",
1174
+ "public/images/page_white_actionscript.png",
1175
+ "public/images/page_white_add.png",
1176
+ "public/images/page_white_c.png",
1177
+ "public/images/page_white_camera.png",
1178
+ "public/images/page_white_cd.png",
1179
+ "public/images/page_white_code.png",
1180
+ "public/images/page_white_code_red.png",
1181
+ "public/images/page_white_coldfusion.png",
1182
+ "public/images/page_white_compressed.png",
1183
+ "public/images/page_white_copy.png",
1184
+ "public/images/page_white_cplusplus.png",
1185
+ "public/images/page_white_csharp.png",
1186
+ "public/images/page_white_cup.png",
1187
+ "public/images/page_white_database.png",
1188
+ "public/images/page_white_delete.png",
1189
+ "public/images/page_white_dvd.png",
1190
+ "public/images/page_white_edit.png",
1191
+ "public/images/page_white_error.png",
1192
+ "public/images/page_white_excel.png",
1193
+ "public/images/page_white_find.png",
1194
+ "public/images/page_white_flash.png",
1195
+ "public/images/page_white_freehand.png",
1196
+ "public/images/page_white_gear.png",
1197
+ "public/images/page_white_get.png",
1198
+ "public/images/page_white_go.png",
1199
+ "public/images/page_white_h.png",
1200
+ "public/images/page_white_horizontal.png",
1201
+ "public/images/page_white_key.png",
1202
+ "public/images/page_white_lightning.png",
1203
+ "public/images/page_white_link.png",
1204
+ "public/images/page_white_magnify.png",
1205
+ "public/images/page_white_medal.png",
1206
+ "public/images/page_white_office.png",
1207
+ "public/images/page_white_paint.png",
1208
+ "public/images/page_white_paintbrush.png",
1209
+ "public/images/page_white_paste.png",
1210
+ "public/images/page_white_php.png",
1211
+ "public/images/page_white_picture.png",
1212
+ "public/images/page_white_powerpoint.png",
1213
+ "public/images/page_white_put.png",
1214
+ "public/images/page_white_ruby.png",
1215
+ "public/images/page_white_stack.png",
1216
+ "public/images/page_white_star.png",
1217
+ "public/images/page_white_swoosh.png",
1218
+ "public/images/page_white_text.png",
1219
+ "public/images/page_white_text_width.png",
1220
+ "public/images/page_white_tux.png",
1221
+ "public/images/page_white_vector.png",
1222
+ "public/images/page_white_visualstudio.png",
1223
+ "public/images/page_white_width.png",
1224
+ "public/images/page_white_word.png",
1225
+ "public/images/page_white_world.png",
1226
+ "public/images/page_white_wrench.png",
1227
+ "public/images/page_white_zip.png",
1228
+ "public/images/page_word.png",
1229
+ "public/images/page_world.png",
1230
+ "public/images/paintbrush.png",
1231
+ "public/images/paintcan.png",
1232
+ "public/images/palette.png",
1233
+ "public/images/paste_plain.png",
1234
+ "public/images/paste_word.png",
1235
+ "public/images/pencil.png",
1236
+ "public/images/pencil_add.png",
1237
+ "public/images/pencil_delete.png",
1238
+ "public/images/pencil_go.png",
1239
+ "public/images/phone.png",
1240
+ "public/images/phone_add.png",
1241
+ "public/images/phone_delete.png",
1242
+ "public/images/phone_sound.png",
1243
+ "public/images/photo.png",
1244
+ "public/images/photo_add.png",
1245
+ "public/images/photo_blue.png",
1246
+ "public/images/photo_delete.png",
1247
+ "public/images/photo_grey.png",
1248
+ "public/images/photo_link.png",
1249
+ "public/images/photos.png",
1250
+ "public/images/picture.png",
1251
+ "public/images/picture_add.png",
1252
+ "public/images/picture_delete.png",
1253
+ "public/images/picture_edit.png",
1254
+ "public/images/picture_empty.png",
1255
+ "public/images/picture_error.png",
1256
+ "public/images/picture_go.png",
1257
+ "public/images/picture_key.png",
1258
+ "public/images/picture_link.png",
1259
+ "public/images/picture_save.png",
1260
+ "public/images/pictures.png",
1261
+ "public/images/pilcrow.png",
1262
+ "public/images/pill.png",
1263
+ "public/images/pill_add.png",
1264
+ "public/images/pill_delete.png",
1265
+ "public/images/pill_go.png",
1266
+ "public/images/plugin.png",
1267
+ "public/images/plugin_add.png",
1268
+ "public/images/plugin_delete.png",
1269
+ "public/images/plugin_disabled.png",
1270
+ "public/images/plugin_edit.png",
1271
+ "public/images/plugin_error.png",
1272
+ "public/images/plugin_go.png",
1273
+ "public/images/plugin_link.png",
1274
+ "public/images/popup_next.png",
1275
+ "public/images/popup_prev.png",
1276
+ "public/images/printer.png",
1277
+ "public/images/printer_add.png",
1278
+ "public/images/printer_delete.png",
1279
+ "public/images/printer_empty.png",
1280
+ "public/images/printer_error.png",
1281
+ "public/images/project.png",
1282
+ "public/images/rails.png",
1283
+ "public/images/rainbow.png",
1284
+ "public/images/report.png",
1285
+ "public/images/report_add.png",
1286
+ "public/images/report_delete.png",
1287
+ "public/images/report_disk.png",
1288
+ "public/images/report_edit.png",
1289
+ "public/images/report_go.png",
1290
+ "public/images/report_key.png",
1291
+ "public/images/report_link.png",
1292
+ "public/images/report_magnify.png",
1293
+ "public/images/report_picture.png",
1294
+ "public/images/report_user.png",
1295
+ "public/images/report_word.png",
1296
+ "public/images/resultset_first.png",
1297
+ "public/images/resultset_last.png",
1298
+ "public/images/resultset_next.png",
1299
+ "public/images/resultset_previous.png",
1300
+ "public/images/rosette.png",
1301
+ "public/images/row_add.png",
1302
+ "public/images/row_delete.png",
1303
+ "public/images/rss.png",
1304
+ "public/images/rss_add.png",
1305
+ "public/images/rss_delete.png",
1306
+ "public/images/rss_go.png",
1307
+ "public/images/rss_valid.png",
1308
+ "public/images/ruby.png",
1309
+ "public/images/ruby_add.png",
1310
+ "public/images/ruby_delete.png",
1311
+ "public/images/ruby_gear.png",
1312
+ "public/images/ruby_get.png",
1313
+ "public/images/ruby_go.png",
1314
+ "public/images/ruby_key.png",
1315
+ "public/images/ruby_link.png",
1316
+ "public/images/ruby_put.png",
1317
+ "public/images/script.png",
1318
+ "public/images/script_add.png",
1319
+ "public/images/script_code.png",
1320
+ "public/images/script_code_red.png",
1321
+ "public/images/script_delete.png",
1322
+ "public/images/script_edit.png",
1323
+ "public/images/script_error.png",
1324
+ "public/images/script_gear.png",
1325
+ "public/images/script_go.png",
1326
+ "public/images/script_key.png",
1327
+ "public/images/script_lightning.png",
1328
+ "public/images/script_link.png",
1329
+ "public/images/script_palette.png",
1330
+ "public/images/script_save.png",
1331
+ "public/images/server.png",
1332
+ "public/images/server_add.png",
1333
+ "public/images/server_chart.png",
1334
+ "public/images/server_compressed.png",
1335
+ "public/images/server_connect.png",
1336
+ "public/images/server_database.png",
1337
+ "public/images/server_delete.png",
1338
+ "public/images/server_edit.png",
1339
+ "public/images/server_error.png",
1340
+ "public/images/server_go.png",
1341
+ "public/images/server_key.png",
1342
+ "public/images/server_lightning.png",
1343
+ "public/images/server_link.png",
1344
+ "public/images/server_uncompressed.png",
1345
+ "public/images/shading.png",
1346
+ "public/images/shape_align_bottom.png",
1347
+ "public/images/shape_align_center.png",
1348
+ "public/images/shape_align_left.png",
1349
+ "public/images/shape_align_middle.png",
1350
+ "public/images/shape_align_right.png",
1351
+ "public/images/shape_align_top.png",
1352
+ "public/images/shape_flip_horizontal.png",
1353
+ "public/images/shape_flip_vertical.png",
1354
+ "public/images/shape_group.png",
1355
+ "public/images/shape_handles.png",
1356
+ "public/images/shape_move_back.png",
1357
+ "public/images/shape_move_backwards.png",
1358
+ "public/images/shape_move_forwards.png",
1359
+ "public/images/shape_move_front.png",
1360
+ "public/images/shape_rotate_anticlockwise.png",
1361
+ "public/images/shape_rotate_clockwise.png",
1362
+ "public/images/shape_square.png",
1363
+ "public/images/shape_square_add.png",
1364
+ "public/images/shape_square_delete.png",
1365
+ "public/images/shape_square_edit.png",
1366
+ "public/images/shape_square_error.png",
1367
+ "public/images/shape_square_go.png",
1368
+ "public/images/shape_square_key.png",
1369
+ "public/images/shape_square_link.png",
1370
+ "public/images/shape_ungroup.png",
1371
+ "public/images/shield.png",
1372
+ "public/images/shield_add.png",
1373
+ "public/images/shield_delete.png",
1374
+ "public/images/shield_go.png",
1375
+ "public/images/silk.html",
1376
+ "public/images/sitemap.png",
1377
+ "public/images/sitemap_color.png",
1378
+ "public/images/sound.png",
1379
+ "public/images/sound_add.png",
1380
+ "public/images/sound_delete.png",
1381
+ "public/images/sound_low.png",
1382
+ "public/images/sound_mute.png",
1383
+ "public/images/sound_none.png",
1384
+ "public/images/spellcheck.png",
1385
+ "public/images/sport_8ball.png",
1386
+ "public/images/sport_basketball.png",
1387
+ "public/images/sport_football.png",
1388
+ "public/images/sport_golf.png",
1389
+ "public/images/sport_raquet.png",
1390
+ "public/images/sport_shuttlecock.png",
1391
+ "public/images/sport_soccer.png",
1392
+ "public/images/sport_tennis.png",
1393
+ "public/images/star.png",
1394
+ "public/images/status_away.png",
1395
+ "public/images/status_busy.png",
1396
+ "public/images/status_offline.png",
1397
+ "public/images/status_online.png",
1398
+ "public/images/stop.png",
1399
+ "public/images/style.png",
1400
+ "public/images/style_add.png",
1401
+ "public/images/style_delete.png",
1402
+ "public/images/style_edit.png",
1403
+ "public/images/style_go.png",
1404
+ "public/images/sum.png",
1405
+ "public/images/swf/xspf/Main.as",
1406
+ "public/images/swf/xspf/com/zuardi/musicplayer/MusicButton.as",
1407
+ "public/images/swf/xspf/com/zuardi/musicplayer/MusicPlayer.as",
1408
+ "public/images/swf/xspf/com/zuardi/musicplayer/Playlist.as",
1409
+ "public/images/swf/xspf/com/zuardi/musicplayer/ProgressiveSlider.as",
1410
+ "public/images/swf/xspf/license.txt",
1411
+ "public/images/swf/xspf/musicplayer.swf",
1412
+ "public/images/swf/xspf/musicplayer_f6.swf",
1413
+ "public/images/swf/xspf/musicplayerbtn.fla",
1414
+ "public/images/swf/xspf/parameters.as",
1415
+ "public/images/tab.png",
1416
+ "public/images/tab_add.png",
1417
+ "public/images/tab_delete.png",
1418
+ "public/images/tab_edit.png",
1419
+ "public/images/tab_go.png",
1420
+ "public/images/table.png",
1421
+ "public/images/table_add.png",
1422
+ "public/images/table_delete.png",
1423
+ "public/images/table_edit.png",
1424
+ "public/images/table_error.png",
1425
+ "public/images/table_gear.png",
1426
+ "public/images/table_go.png",
1427
+ "public/images/table_key.png",
1428
+ "public/images/table_lightning.png",
1429
+ "public/images/table_link.png",
1430
+ "public/images/table_multiple.png",
1431
+ "public/images/table_refresh.png",
1432
+ "public/images/table_relationship.png",
1433
+ "public/images/table_row_delete.png",
1434
+ "public/images/table_row_insert.png",
1435
+ "public/images/table_save.png",
1436
+ "public/images/table_sort.png",
1437
+ "public/images/tag.png",
1438
+ "public/images/tag_blue.png",
1439
+ "public/images/tag_blue_add.png",
1440
+ "public/images/tag_blue_delete.png",
1441
+ "public/images/tag_blue_edit.png",
1442
+ "public/images/tag_green.png",
1443
+ "public/images/tag_orange.png",
1444
+ "public/images/tag_pink.png",
1445
+ "public/images/tag_purple.png",
1446
+ "public/images/tag_red.png",
1447
+ "public/images/tag_yellow.png",
1448
+ "public/images/target.png",
1449
+ "public/images/telephone.png",
1450
+ "public/images/telephone_add.png",
1451
+ "public/images/telephone_delete.png",
1452
+ "public/images/telephone_edit.png",
1453
+ "public/images/telephone_error.png",
1454
+ "public/images/telephone_go.png",
1455
+ "public/images/telephone_key.png",
1456
+ "public/images/telephone_link.png",
1457
+ "public/images/television.png",
1458
+ "public/images/television_add.png",
1459
+ "public/images/television_delete.png",
1460
+ "public/images/text_align_center.png",
1461
+ "public/images/text_align_justify.png",
1462
+ "public/images/text_align_left.png",
1463
+ "public/images/text_align_right.png",
1464
+ "public/images/text_allcaps.png",
1465
+ "public/images/text_bold.png",
1466
+ "public/images/text_columns.png",
1467
+ "public/images/text_dropcaps.png",
1468
+ "public/images/text_heading_1.png",
1469
+ "public/images/text_heading_2.png",
1470
+ "public/images/text_heading_3.png",
1471
+ "public/images/text_heading_4.png",
1472
+ "public/images/text_heading_5.png",
1473
+ "public/images/text_heading_6.png",
1474
+ "public/images/text_horizontalrule.png",
1475
+ "public/images/text_indent.png",
1476
+ "public/images/text_indent_remove.png",
1477
+ "public/images/text_italic.png",
1478
+ "public/images/text_kerning.png",
1479
+ "public/images/text_letter_omega.png",
1480
+ "public/images/text_letterspacing.png",
1481
+ "public/images/text_linespacing.png",
1482
+ "public/images/text_list_bullets.png",
1483
+ "public/images/text_list_numbers.png",
1484
+ "public/images/text_lowercase.png",
1485
+ "public/images/text_padding_bottom.png",
1486
+ "public/images/text_padding_left.png",
1487
+ "public/images/text_padding_right.png",
1488
+ "public/images/text_padding_top.png",
1489
+ "public/images/text_replace.png",
1490
+ "public/images/text_signature.png",
1491
+ "public/images/text_smallcaps.png",
1492
+ "public/images/text_strikethrough.png",
1493
+ "public/images/text_subscript.png",
1494
+ "public/images/text_superscript.png",
1495
+ "public/images/text_underline.png",
1496
+ "public/images/text_uppercase.png",
1497
+ "public/images/textfield.png",
1498
+ "public/images/textfield_add.png",
1499
+ "public/images/textfield_delete.png",
1500
+ "public/images/textfield_key.png",
1501
+ "public/images/textfield_rename.png",
1502
+ "public/images/thumb_down.png",
1503
+ "public/images/thumb_up.png",
1504
+ "public/images/tick.png",
1505
+ "public/images/time.png",
1506
+ "public/images/time_add.png",
1507
+ "public/images/time_delete.png",
1508
+ "public/images/time_go.png",
1509
+ "public/images/timeline_marker.png",
1510
+ "public/images/transmit.png",
1511
+ "public/images/transmit_add.png",
1512
+ "public/images/transmit_blue.png",
1513
+ "public/images/transmit_delete.png",
1514
+ "public/images/transmit_edit.png",
1515
+ "public/images/transmit_error.png",
1516
+ "public/images/transmit_go.png",
1517
+ "public/images/tux.png",
1518
+ "public/images/user.png",
1519
+ "public/images/user_add.png",
1520
+ "public/images/user_admin.png",
1521
+ "public/images/user_comment.png",
1522
+ "public/images/user_delete.png",
1523
+ "public/images/user_edit.png",
1524
+ "public/images/user_female.png",
1525
+ "public/images/user_go.png",
1526
+ "public/images/user_gray.png",
1527
+ "public/images/user_green.png",
1528
+ "public/images/user_orange.png",
1529
+ "public/images/user_pub.png",
1530
+ "public/images/user_red.png",
1531
+ "public/images/user_su.png",
1532
+ "public/images/user_suit.png",
1533
+ "public/images/validate.png",
1534
+ "public/images/valider.png",
1535
+ "public/images/vcard.png",
1536
+ "public/images/vcard_add.png",
1537
+ "public/images/vcard_delete.png",
1538
+ "public/images/vcard_edit.png",
1539
+ "public/images/vector.png",
1540
+ "public/images/vector_add.png",
1541
+ "public/images/vector_delete.png",
1542
+ "public/images/wand.png",
1543
+ "public/images/weather_clouds.png",
1544
+ "public/images/weather_cloudy.png",
1545
+ "public/images/weather_lightning.png",
1546
+ "public/images/weather_rain.png",
1547
+ "public/images/weather_snow.png",
1548
+ "public/images/weather_sun.png",
1549
+ "public/images/webcam.png",
1550
+ "public/images/webcam_add.png",
1551
+ "public/images/webcam_delete.png",
1552
+ "public/images/webcam_error.png",
1553
+ "public/images/world.png",
1554
+ "public/images/world_add.png",
1555
+ "public/images/world_delete.png",
1556
+ "public/images/world_edit.png",
1557
+ "public/images/world_go.png",
1558
+ "public/images/world_link.png",
1559
+ "public/images/wrench.png",
1560
+ "public/images/wrench_orange.png",
1561
+ "public/images/xhtml.png",
1562
+ "public/images/xhtml_add.png",
1563
+ "public/images/xhtml_delete.png",
1564
+ "public/images/xhtml_go.png",
1565
+ "public/images/xhtml_valid.png",
1566
+ "public/images/zoom.png",
1567
+ "public/images/zoom_in.png",
1568
+ "public/images/zoom_out.png",
1569
+ "public/img/logo.png",
1570
+ "public/javascripts/application.js",
1571
+ "public/javascripts/builder.js",
1572
+ "public/javascripts/controls.js",
1573
+ "public/javascripts/dragdrop.js",
1574
+ "public/javascripts/effects.js",
1575
+ "public/javascripts/prototype.js",
1576
+ "public/javascripts/scriptaculous.js",
1577
+ "public/javascripts/slider.js",
1578
+ "public/javascripts/sound.js",
1579
+ "public/javascripts/tablekit.js",
1580
+ "public/javascripts/unittest.js",
1581
+ "public/javascripts/upload-progress.js",
1582
+ "public/javascripts/zena.js",
1583
+ "public/robots.txt",
1584
+ "public/stylesheets/admin.css",
1585
+ "public/stylesheets/calendar.css",
1586
+ "public/stylesheets/code.css",
1587
+ "public/stylesheets/comment.css",
1588
+ "public/stylesheets/csshover2.htc",
1589
+ "public/stylesheets/default.css",
1590
+ "public/stylesheets/popup.css",
1591
+ "public/stylesheets/reset.css",
1592
+ "public/stylesheets/search.css",
1593
+ "public/stylesheets/upload-progress.css",
1594
+ "public/stylesheets/wiki.css",
1595
+ "public/stylesheets/zen.css",
1596
+ "public/stylesheets/zena.css",
1597
+ "rails/init.rb",
1598
+ "script/about",
1599
+ "script/apache_logging",
1600
+ "script/breakpointer",
1601
+ "script/console",
1602
+ "script/dbconsole",
1603
+ "script/destroy",
1604
+ "script/generate",
1605
+ "script/performance/benchmarker",
1606
+ "script/performance/profiler",
1607
+ "script/plugin",
1608
+ "script/process/inspector",
1609
+ "script/process/reaper",
1610
+ "script/process/spawner",
1611
+ "script/runner",
1612
+ "script/server",
1613
+ "script/set_revision",
1614
+ "spec/controllers/versions_controller_spec.rb",
1615
+ "test/custom_queries/complex.host.yml",
1616
+ "test/fixtures/files/Node-test.zafu",
1617
+ "test/fixtures/files/bird.jpg",
1618
+ "test/fixtures/files/bomb.png",
1619
+ "test/fixtures/files/exif_sample.jpg",
1620
+ "test/fixtures/files/flower.jpg",
1621
+ "test/fixtures/files/forest.pdf",
1622
+ "test/fixtures/files/import.tgz",
1623
+ "test/fixtures/files/jet_30.zip",
1624
+ "test/fixtures/files/lake.jpg",
1625
+ "test/fixtures/files/letter.zip",
1626
+ "test/fixtures/files/other.txt",
1627
+ "test/fixtures/files/simple.zml.gz",
1628
+ "test/fixtures/files/some.txt",
1629
+ "test/fixtures/files/translations_de.yml",
1630
+ "test/fixtures/files/translations_fr.yml",
1631
+ "test/fixtures/files/tree.jpg",
1632
+ "test/fixtures/files/water.pdf",
1633
+ "test/fixtures/import/photos.en.zml",
1634
+ "test/fixtures/import/photos/bird.jpg",
1635
+ "test/fixtures/import/photos/bird.jpg.en.zml",
1636
+ "test/fixtures/import/photos/bird.jpg.fr.zml",
1637
+ "test/fixtures/import/photos/document.yml.en",
1638
+ "test/fixtures/import/photos/document.yml.fr",
1639
+ "test/fixtures/import/simple.zml",
1640
+ "test/functional/application_controller_test.rb",
1641
+ "test/functional/calendar_controller_test.rb",
1642
+ "test/functional/comments_controller_test.rb",
1643
+ "test/functional/data_entries_controller_test.rb",
1644
+ "test/functional/discussion_controller_test.rb",
1645
+ "test/functional/documents_controller_test.rb",
1646
+ "test/functional/groups_controller_test.rb",
1647
+ "test/functional/iformats_controller_test.rb",
1648
+ "test/functional/links_controller_test.rb",
1649
+ "test/functional/nodes_controller_test.rb",
1650
+ "test/functional/note_controller_test.rb",
1651
+ "test/functional/pings_controller_test.rb",
1652
+ "test/functional/preferences_controller_test.rb",
1653
+ "test/functional/relations_controller_test.rb",
1654
+ "test/functional/search_controller_test.rb",
1655
+ "test/functional/sites_controller_test.rb",
1656
+ "test/functional/user_sessions_controller_test.rb",
1657
+ "test/functional/users_controller_test.rb",
1658
+ "test/functional/versions_controller_test.rb",
1659
+ "test/functional/virtual_classes_controller_test.rb",
1660
+ "test/helpers/node_query/basic.yml",
1661
+ "test/helpers/node_query/comments.yml",
1662
+ "test/helpers/node_query/complex.yml",
1663
+ "test/helpers/node_query/filters.yml",
1664
+ "test/helpers/node_query/relations.yml",
1665
+ "test/helpers/node_query_test.rb",
1666
+ "test/integration/multiple_hosts_test.rb",
1667
+ "test/integration/multiversion_test.rb",
1668
+ "test/integration/navigation_test.rb",
1669
+ "test/sites/README",
1670
+ "test/sites/complex/complex.png",
1671
+ "test/sites/complex/groups.yml",
1672
+ "test/sites/complex/links.yml",
1673
+ "test/sites/complex/nodes.yml",
1674
+ "test/sites/complex/relations.yml",
1675
+ "test/sites/complex/sites.yml",
1676
+ "test/sites/complex/users.yml",
1677
+ "test/sites/complex/versions.yml",
1678
+ "test/sites/complex/virtual_classes.yml",
1679
+ "test/sites/ocean/contact_contents.yml",
1680
+ "test/sites/ocean/groups.yml",
1681
+ "test/sites/ocean/iformats.yml",
1682
+ "test/sites/ocean/nodes.yml",
1683
+ "test/sites/ocean/sites.yml",
1684
+ "test/sites/ocean/template_contents.yml",
1685
+ "test/sites/ocean/users.yml",
1686
+ "test/sites/ocean/versions.yml",
1687
+ "test/sites/zena/comments.yml",
1688
+ "test/sites/zena/contact_contents.yml",
1689
+ "test/sites/zena/data_entries.yml",
1690
+ "test/sites/zena/discussions.yml",
1691
+ "test/sites/zena/document_contents.yml",
1692
+ "test/sites/zena/dyn_attributes.yml",
1693
+ "test/sites/zena/groups.yml",
1694
+ "test/sites/zena/iformats.yml",
1695
+ "test/sites/zena/links.yml",
1696
+ "test/sites/zena/nodes.yml",
1697
+ "test/sites/zena/relations.yml",
1698
+ "test/sites/zena/sites.yml",
1699
+ "test/sites/zena/template_contents.yml",
1700
+ "test/sites/zena/users.yml",
1701
+ "test/sites/zena/versions.yml",
1702
+ "test/sites/zena/virtual_classes.yml",
1703
+ "test/test_helper.rb",
1704
+ "test/test_zena.rb",
1705
+ "test/unit/cache_test.rb",
1706
+ "test/unit/cached_page_test.rb",
1707
+ "test/unit/comment_test.rb",
1708
+ "test/unit/contact_content_test.rb",
1709
+ "test/unit/contact_test.rb",
1710
+ "test/unit/contact_version_test.rb",
1711
+ "test/unit/core_ext_test.rb",
1712
+ "test/unit/data_entry_test.rb",
1713
+ "test/unit/discussion_test.rb",
1714
+ "test/unit/document_content_test.rb",
1715
+ "test/unit/document_test.rb",
1716
+ "test/unit/document_version_test.rb",
1717
+ "test/unit/dyn_attributes_test.rb",
1718
+ "test/unit/exif_data_test.rb",
1719
+ "test/unit/group_test.rb",
1720
+ "test/unit/helpers/ping_helper_test.rb",
1721
+ "test/unit/iformat_test.rb",
1722
+ "test/unit/image_builder_test.rb",
1723
+ "test/unit/image_content_test.rb",
1724
+ "test/unit/image_test.rb",
1725
+ "test/unit/image_version_test.rb",
1726
+ "test/unit/letter_test.rb",
1727
+ "test/unit/link_test.rb",
1728
+ "test/unit/multiversion_test.rb",
1729
+ "test/unit/node_test.rb",
1730
+ "test/unit/note_test.rb",
1731
+ "test/unit/page_test.rb",
1732
+ "test/unit/project_test.rb",
1733
+ "test/unit/reference_test.rb",
1734
+ "test/unit/relation_proxy_test.rb",
1735
+ "test/unit/relation_test.rb",
1736
+ "test/unit/section_test.rb",
1737
+ "test/unit/secure_test.rb",
1738
+ "test/unit/site_test.rb",
1739
+ "test/unit/skin_test.rb",
1740
+ "test/unit/template_content_test.rb",
1741
+ "test/unit/template_test.rb",
1742
+ "test/unit/template_version_test.rb",
1743
+ "test/unit/text_document_content_test.rb",
1744
+ "test/unit/text_document_test.rb",
1745
+ "test/unit/text_document_version_test.rb",
1746
+ "test/unit/user_test.rb",
1747
+ "test/unit/version_test.rb",
1748
+ "test/unit/virtual_class_test.rb",
1749
+ "test/unit/zena/db_test.rb",
1750
+ "test/unit/zena/parser/latex.yml",
1751
+ "test/unit/zena/parser/zafu.yml",
1752
+ "test/unit/zena/parser/zafu_asset.yml",
1753
+ "test/unit/zena/parser/zafu_insight.yml",
1754
+ "test/unit/zena/parser/zazen.yml",
1755
+ "test/unit/zena/parser_test.rb",
1756
+ "test/unit/zena/unit/test_case_test.rb",
1757
+ "test/unit/zena/use/calendar_test.rb",
1758
+ "test/unit/zena/use/dates_model_methods_test.rb",
1759
+ "test/unit/zena/use/dates_string_methods_test.rb",
1760
+ "test/unit/zena/use/dates_view_methods_test.rb",
1761
+ "test/unit/zena/use/html_tags_test.rb",
1762
+ "test/unit/zena/use/i18n_test.rb",
1763
+ "test/unit/zena/use/nested_attributes_alias_model_test.rb",
1764
+ "test/unit/zena/use/nested_attributes_alias_view_test.rb",
1765
+ "test/unit/zena/use/refactor_test.rb",
1766
+ "test/unit/zena/use/rendering_test.rb",
1767
+ "test/unit/zena/use/upload_test.rb",
1768
+ "test/unit/zena/use/urls_test.rb",
1769
+ "test/unit/zena/use/zafu_test.rb",
1770
+ "test/unit/zena/use/zazen_test.rb",
1771
+ "test/unit/zena/workflow/status_version_test.rb",
1772
+ "test/unit/zena/zena_tags/ajax.yml",
1773
+ "test/unit/zena/zena_tags/apphelper.yml",
1774
+ "test/unit/zena/zena_tags/basic.yml",
1775
+ "test/unit/zena/zena_tags/complex.yml",
1776
+ "test/unit/zena/zena_tags/data.yml",
1777
+ "test/unit/zena/zena_tags/errors.yml",
1778
+ "test/unit/zena/zena_tags/eval.yml",
1779
+ "test/unit/zena/zena_tags/relations.yml",
1780
+ "test/unit/zena/zena_tags/rubyless.yml",
1781
+ "test/unit/zena/zena_tags/zazen.yml",
1782
+ "test/unit/zena/zena_tags_test.rb",
1783
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand",
1784
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand",
1785
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand",
1786
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand",
1787
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand",
1788
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences",
1789
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences",
1790
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet",
1791
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet",
1792
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet",
1793
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet",
1794
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet",
1795
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet",
1796
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet",
1797
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet",
1798
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet",
1799
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet",
1800
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet",
1801
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet",
1802
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet",
1803
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet",
1804
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet",
1805
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet",
1806
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet",
1807
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet",
1808
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet",
1809
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet",
1810
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet",
1811
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet",
1812
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet",
1813
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet",
1814
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet",
1815
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet",
1816
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet",
1817
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet",
1818
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet",
1819
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet",
1820
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet",
1821
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet",
1822
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet",
1823
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet",
1824
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet",
1825
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet",
1826
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet",
1827
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet",
1828
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet",
1829
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet",
1830
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet",
1831
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet",
1832
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet",
1833
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet",
1834
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet",
1835
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet",
1836
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet",
1837
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet",
1838
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet",
1839
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet",
1840
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet",
1841
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet",
1842
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet",
1843
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet",
1844
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet",
1845
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet",
1846
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet",
1847
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet",
1848
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet",
1849
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet",
1850
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet",
1851
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet",
1852
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet",
1853
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet",
1854
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet",
1855
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet",
1856
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet",
1857
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet",
1858
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb",
1859
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb",
1860
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb",
1861
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb",
1862
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt",
1863
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb",
1864
+ "vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage",
1865
+ "vendor/TextMate/Ruby Shoulda.tmbundle/info.plist",
1866
+ "vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand",
1867
+ "vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand",
1868
+ "vendor/TextMate/Zena.tmbundle/Support/RubyMate/catch_exception.rb",
1869
+ "vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb",
1870
+ "vendor/TextMate/Zena.tmbundle/Support/RubyMate/stdin_dialog.rb",
1871
+ "vendor/TextMate/Zena.tmbundle/info.plist",
1872
+ "vendor/apache2_upload_progress/MIT-LICENSE",
1873
+ "vendor/apache2_upload_progress/README",
1874
+ "vendor/apache2_upload_progress/mod_upload_progress.c",
1875
+ "vendor/apache_upload/mod_upload_progress.c",
1876
+ "vendor/bricks/20070122-172926.txt",
1877
+ "vendor/plugins/ar_mysql_full_text/README",
1878
+ "vendor/plugins/ar_mysql_full_text/init.rb",
1879
+ "vendor/plugins/ar_mysql_full_text/lib/ar_mysql_full_text.rb",
1880
+ "vendor/plugins/gettext_i18n_rails/README.markdown",
1881
+ "vendor/plugins/gettext_i18n_rails/Rakefile",
1882
+ "vendor/plugins/gettext_i18n_rails/init.rb",
1883
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails.rb",
1884
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/action_controller.rb",
1885
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/active_record.rb",
1886
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/backend.rb",
1887
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/haml_parser.rb",
1888
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/i18n_hacks.rb",
1889
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/model_attributes_finder.rb",
1890
+ "vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/ruby_gettext_extractor.rb",
1891
+ "vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/action_controller_spec.rb",
1892
+ "vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/active_record_spec.rb",
1893
+ "vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/backend_spec.rb",
1894
+ "vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails_spec.rb",
1895
+ "vendor/plugins/gettext_i18n_rails/spec/spec_helper.rb",
1896
+ "vendor/plugins/gettext_i18n_rails/tasks/gettext_rails_i18n.rake",
1897
+ "vendor/plugins/responds_to_parent/MIT-LICENSE",
1898
+ "vendor/plugins/responds_to_parent/README",
1899
+ "vendor/plugins/responds_to_parent/Rakefile",
1900
+ "vendor/plugins/responds_to_parent/init.rb",
1901
+ "vendor/plugins/responds_to_parent/lib/responds_to_parent.rb",
1902
+ "vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb",
1903
+ "vendor/plugins/rjs-assertions/MIT-LICENSE",
1904
+ "vendor/plugins/rjs-assertions/README",
1905
+ "vendor/plugins/rjs-assertions/init.rb",
1906
+ "vendor/plugins/rjs-assertions/lib/rjs-assertions.rb",
1907
+ "vendor/rails_patches/support_for_inverse_relationships_on_active_record_objects.diff",
1908
+ "zena.gemspec"
1909
+ ]
1910
+ s.homepage = %q{http://zenadmin.org}
1911
+ s.rdoc_options = ["--charset=UTF-8"]
1912
+ s.require_paths = ["lib"]
1913
+ s.rubyforge_project = %q{zena}
1914
+ s.rubygems_version = %q{1.3.5}
1915
+ s.summary = %q{CMS with super natural powers, based on Ruby on Rails}
1916
+ s.test_files = [
1917
+ "spec/controllers/versions_controller_spec.rb",
1918
+ "test/functional/application_controller_test.rb",
1919
+ "test/functional/calendar_controller_test.rb",
1920
+ "test/functional/comments_controller_test.rb",
1921
+ "test/functional/data_entries_controller_test.rb",
1922
+ "test/functional/discussion_controller_test.rb",
1923
+ "test/functional/documents_controller_test.rb",
1924
+ "test/functional/groups_controller_test.rb",
1925
+ "test/functional/iformats_controller_test.rb",
1926
+ "test/functional/links_controller_test.rb",
1927
+ "test/functional/nodes_controller_test.rb",
1928
+ "test/functional/note_controller_test.rb",
1929
+ "test/functional/pings_controller_test.rb",
1930
+ "test/functional/preferences_controller_test.rb",
1931
+ "test/functional/relations_controller_test.rb",
1932
+ "test/functional/search_controller_test.rb",
1933
+ "test/functional/sites_controller_test.rb",
1934
+ "test/functional/user_sessions_controller_test.rb",
1935
+ "test/functional/users_controller_test.rb",
1936
+ "test/functional/versions_controller_test.rb",
1937
+ "test/functional/virtual_classes_controller_test.rb",
1938
+ "test/helpers/node_query_test.rb",
1939
+ "test/integration/multiple_hosts_test.rb",
1940
+ "test/integration/multiversion_test.rb",
1941
+ "test/integration/navigation_test.rb",
1942
+ "test/test_helper.rb",
1943
+ "test/test_zena.rb",
1944
+ "test/unit/cache_test.rb",
1945
+ "test/unit/cached_page_test.rb",
1946
+ "test/unit/comment_test.rb",
1947
+ "test/unit/contact_content_test.rb",
1948
+ "test/unit/contact_test.rb",
1949
+ "test/unit/contact_version_test.rb",
1950
+ "test/unit/core_ext_test.rb",
1951
+ "test/unit/data_entry_test.rb",
1952
+ "test/unit/discussion_test.rb",
1953
+ "test/unit/document_content_test.rb",
1954
+ "test/unit/document_test.rb",
1955
+ "test/unit/document_version_test.rb",
1956
+ "test/unit/dyn_attributes_test.rb",
1957
+ "test/unit/exif_data_test.rb",
1958
+ "test/unit/group_test.rb",
1959
+ "test/unit/helpers/ping_helper_test.rb",
1960
+ "test/unit/iformat_test.rb",
1961
+ "test/unit/image_builder_test.rb",
1962
+ "test/unit/image_content_test.rb",
1963
+ "test/unit/image_test.rb",
1964
+ "test/unit/image_version_test.rb",
1965
+ "test/unit/letter_test.rb",
1966
+ "test/unit/link_test.rb",
1967
+ "test/unit/multiversion_test.rb",
1968
+ "test/unit/node_test.rb",
1969
+ "test/unit/note_test.rb",
1970
+ "test/unit/page_test.rb",
1971
+ "test/unit/project_test.rb",
1972
+ "test/unit/reference_test.rb",
1973
+ "test/unit/relation_proxy_test.rb",
1974
+ "test/unit/relation_test.rb",
1975
+ "test/unit/section_test.rb",
1976
+ "test/unit/secure_test.rb",
1977
+ "test/unit/site_test.rb",
1978
+ "test/unit/skin_test.rb",
1979
+ "test/unit/template_content_test.rb",
1980
+ "test/unit/template_test.rb",
1981
+ "test/unit/template_version_test.rb",
1982
+ "test/unit/text_document_content_test.rb",
1983
+ "test/unit/text_document_test.rb",
1984
+ "test/unit/text_document_version_test.rb",
1985
+ "test/unit/user_test.rb",
1986
+ "test/unit/version_test.rb",
1987
+ "test/unit/virtual_class_test.rb",
1988
+ "test/unit/zena/db_test.rb",
1989
+ "test/unit/zena/parser_test.rb",
1990
+ "test/unit/zena/unit/test_case_test.rb",
1991
+ "test/unit/zena/use/calendar_test.rb",
1992
+ "test/unit/zena/use/dates_model_methods_test.rb",
1993
+ "test/unit/zena/use/dates_string_methods_test.rb",
1994
+ "test/unit/zena/use/dates_view_methods_test.rb",
1995
+ "test/unit/zena/use/html_tags_test.rb",
1996
+ "test/unit/zena/use/i18n_test.rb",
1997
+ "test/unit/zena/use/nested_attributes_alias_model_test.rb",
1998
+ "test/unit/zena/use/nested_attributes_alias_view_test.rb",
1999
+ "test/unit/zena/use/refactor_test.rb",
2000
+ "test/unit/zena/use/rendering_test.rb",
2001
+ "test/unit/zena/use/upload_test.rb",
2002
+ "test/unit/zena/use/urls_test.rb",
2003
+ "test/unit/zena/use/zafu_test.rb",
2004
+ "test/unit/zena/use/zazen_test.rb",
2005
+ "test/unit/zena/workflow/status_version_test.rb",
2006
+ "test/unit/zena/zena_tags_test.rb"
2007
+ ]
2008
+
2009
+ if s.respond_to? :specification_version then
2010
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
2011
+ s.specification_version = 3
2012
+
2013
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
2014
+ s.add_runtime_dependency(%q<ruby-recaptcha>, ["= 1.0.0"])
2015
+ s.add_runtime_dependency(%q<tzinfo>, [">= 0.3.12"])
2016
+ s.add_runtime_dependency(%q<rubyless>, [">= 0.3.5"])
2017
+ s.add_runtime_dependency(%q<rails>, ["= 2.3.4"])
2018
+ s.add_runtime_dependency(%q<uuidtools>, ["= 2.0.0"])
2019
+ s.add_runtime_dependency(%q<authlogic>, [">= 0"])
2020
+ s.add_runtime_dependency(%q<ts-delayed-delta>, [">= 1.0.0"])
2021
+ s.add_runtime_dependency(%q<pvande-differ>, ["= 0.1.1"])
2022
+ s.add_runtime_dependency(%q<mislav-will_paginate>, ["~> 2.2.3"])
2023
+ s.add_runtime_dependency(%q<delayed_job>, [">= 1.8.4"])
2024
+ s.add_runtime_dependency(%q<syntax>, ["= 1.0.0"])
2025
+ s.add_runtime_dependency(%q<thinking-sphinx>, [">= 1.3.1"])
2026
+ s.add_runtime_dependency(%q<yamltest>, ["= 0.5.3"])
2027
+ s.add_runtime_dependency(%q<json>, [">= 1.1.9"])
2028
+ s.add_runtime_dependency(%q<gettext>, ["= 1.93.0"])
2029
+ s.add_runtime_dependency(%q<rmagick>, [">= 2.11.1"])
2030
+ s.add_development_dependency(%q<jeweler>, [">= 1.4.0"])
2031
+ s.add_runtime_dependency(%q<grosser-fast_gettext>, ["~> 0.4.16"])
2032
+ s.add_runtime_dependency(%q<thoughtbot-shoulda>, ["= 2.10.2"])
2033
+ s.add_runtime_dependency(%q<hpricot>, [">= 0"])
2034
+ s.add_runtime_dependency(%q<RedCloth>, ["= 3.0.4"])
2035
+ s.add_runtime_dependency(%q<querybuilder>, ["= 0.5.6"])
2036
+ else
2037
+ s.add_dependency(%q<ruby-recaptcha>, ["= 1.0.0"])
2038
+ s.add_dependency(%q<tzinfo>, [">= 0.3.12"])
2039
+ s.add_dependency(%q<rubyless>, [">= 0.3.5"])
2040
+ s.add_dependency(%q<rails>, ["= 2.3.4"])
2041
+ s.add_dependency(%q<uuidtools>, ["= 2.0.0"])
2042
+ s.add_dependency(%q<authlogic>, [">= 0"])
2043
+ s.add_dependency(%q<ts-delayed-delta>, [">= 1.0.0"])
2044
+ s.add_dependency(%q<pvande-differ>, ["= 0.1.1"])
2045
+ s.add_dependency(%q<mislav-will_paginate>, ["~> 2.2.3"])
2046
+ s.add_dependency(%q<delayed_job>, [">= 1.8.4"])
2047
+ s.add_dependency(%q<syntax>, ["= 1.0.0"])
2048
+ s.add_dependency(%q<thinking-sphinx>, [">= 1.3.1"])
2049
+ s.add_dependency(%q<yamltest>, ["= 0.5.3"])
2050
+ s.add_dependency(%q<json>, [">= 1.1.9"])
2051
+ s.add_dependency(%q<gettext>, ["= 1.93.0"])
2052
+ s.add_dependency(%q<rmagick>, [">= 2.11.1"])
2053
+ s.add_dependency(%q<jeweler>, [">= 1.4.0"])
2054
+ s.add_dependency(%q<grosser-fast_gettext>, ["~> 0.4.16"])
2055
+ s.add_dependency(%q<thoughtbot-shoulda>, ["= 2.10.2"])
2056
+ s.add_dependency(%q<hpricot>, [">= 0"])
2057
+ s.add_dependency(%q<RedCloth>, ["= 3.0.4"])
2058
+ s.add_dependency(%q<querybuilder>, ["= 0.5.6"])
2059
+ end
2060
+ else
2061
+ s.add_dependency(%q<ruby-recaptcha>, ["= 1.0.0"])
2062
+ s.add_dependency(%q<tzinfo>, [">= 0.3.12"])
2063
+ s.add_dependency(%q<rubyless>, [">= 0.3.5"])
2064
+ s.add_dependency(%q<rails>, ["= 2.3.4"])
2065
+ s.add_dependency(%q<uuidtools>, ["= 2.0.0"])
2066
+ s.add_dependency(%q<authlogic>, [">= 0"])
2067
+ s.add_dependency(%q<ts-delayed-delta>, [">= 1.0.0"])
2068
+ s.add_dependency(%q<pvande-differ>, ["= 0.1.1"])
2069
+ s.add_dependency(%q<mislav-will_paginate>, ["~> 2.2.3"])
2070
+ s.add_dependency(%q<delayed_job>, [">= 1.8.4"])
2071
+ s.add_dependency(%q<syntax>, ["= 1.0.0"])
2072
+ s.add_dependency(%q<thinking-sphinx>, [">= 1.3.1"])
2073
+ s.add_dependency(%q<yamltest>, ["= 0.5.3"])
2074
+ s.add_dependency(%q<json>, [">= 1.1.9"])
2075
+ s.add_dependency(%q<gettext>, ["= 1.93.0"])
2076
+ s.add_dependency(%q<rmagick>, [">= 2.11.1"])
2077
+ s.add_dependency(%q<jeweler>, [">= 1.4.0"])
2078
+ s.add_dependency(%q<grosser-fast_gettext>, ["~> 0.4.16"])
2079
+ s.add_dependency(%q<thoughtbot-shoulda>, ["= 2.10.2"])
2080
+ s.add_dependency(%q<hpricot>, [">= 0"])
2081
+ s.add_dependency(%q<RedCloth>, ["= 3.0.4"])
2082
+ s.add_dependency(%q<querybuilder>, ["= 0.5.6"])
2083
+ end
2084
+ end
2085
+