decko 0.0.1 → 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (712) hide show
  1. checksums.yaml +5 -13
  2. data/.rspec +4 -0
  3. data/GPL +331 -0
  4. data/Guardfile +32 -0
  5. data/LICENSE +16 -0
  6. data/README.rdoc +108 -0
  7. data/app/assets/images/body-bg.bmp +0 -0
  8. data/app/assets/images/body-bg.png +0 -0
  9. data/app/assets/images/external_link.png +0 -0
  10. data/app/assets/images/smoothness/animated-overlay.gif +0 -0
  11. data/app/assets/images/smoothness/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  12. data/app/assets/images/smoothness/ui-bg_flat_75_ffffff_40x100.png +0 -0
  13. data/app/assets/images/smoothness/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  14. data/app/assets/images/smoothness/ui-bg_glass_65_ffffff_1x400.png +0 -0
  15. data/app/assets/images/smoothness/ui-bg_glass_75_dadada_1x400.png +0 -0
  16. data/app/assets/images/smoothness/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  17. data/app/assets/images/smoothness/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  18. data/app/assets/images/smoothness/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  19. data/app/assets/images/smoothness/ui-icons_222222_256x240.png +0 -0
  20. data/app/assets/images/smoothness/ui-icons_2e83ff_256x240.png +0 -0
  21. data/app/assets/images/smoothness/ui-icons_454545_256x240.png +0 -0
  22. data/app/assets/images/smoothness/ui-icons_888888_256x240.png +0 -0
  23. data/app/assets/images/smoothness/ui-icons_cd0a0a_256x240.png +0 -0
  24. data/bin/decko +9 -0
  25. data/decko.gemspec +41 -22
  26. data/features/attach.feature +107 -0
  27. data/features/autonaming.feature +17 -0
  28. data/features/conflict.feature +41 -0
  29. data/features/follow.feature +63 -0
  30. data/features/history.feature +27 -0
  31. data/features/layouts.feature +24 -0
  32. data/features/navbox.feature +34 -0
  33. data/features/notifications.feature +33 -0
  34. data/features/paging.feature +34 -0
  35. data/features/pointer_inputs.feature +81 -0
  36. data/features/presetting_content.feature +12 -0
  37. data/features/reference.feature +23 -0
  38. data/features/reset_password.feature +34 -0
  39. data/features/rules.feature +45 -0
  40. data/features/setup.feature +32 -0
  41. data/features/signup.feature +49 -0
  42. data/features/step_definitions/email_steps.rb +216 -0
  43. data/features/step_definitions/history_steps.rb +5 -0
  44. data/features/step_definitions/wagn_steps.rb +495 -0
  45. data/features/step_definitions/web_steps.rb +152 -0
  46. data/features/step_definitions/window_steps.rb +27 -0
  47. data/features/structure.feature +41 -0
  48. data/features/support/debugger.rb +44 -0
  49. data/features/support/delayed_job.rb +18 -0
  50. data/features/support/env.rb +107 -0
  51. data/features/support/file.txt +1 -0
  52. data/features/support/image.png +0 -0
  53. data/features/support/image2.jpg +0 -0
  54. data/features/support/paths.rb +63 -0
  55. data/features/support/scopes.rb +34 -0
  56. data/features/support/wagn_env.rb +11 -0
  57. data/features/table_of_contents.feature +36 -0
  58. data/features/toolbar.feature +27 -0
  59. data/features/update_includers.feature +72 -0
  60. data/lib/decko.rb +39 -3
  61. data/lib/decko/all.rb +1 -0
  62. data/lib/decko/application.rb +90 -0
  63. data/lib/decko/cli.rb +17 -0
  64. data/lib/decko/commands.rb +121 -0
  65. data/lib/decko/commands/application.rb +10 -0
  66. data/lib/decko/commands/command.rb +26 -0
  67. data/lib/decko/commands/cucumber_command.rb +51 -0
  68. data/lib/decko/commands/cucumber_command/parser.rb +33 -0
  69. data/lib/decko/commands/rake_command.rb +35 -0
  70. data/lib/decko/commands/rake_command/parser.rb +34 -0
  71. data/lib/decko/commands/rspec_command.rb +38 -0
  72. data/lib/decko/commands/rspec_command/parser.rb +84 -0
  73. data/lib/decko/config/environments/cucumber.rb +33 -0
  74. data/lib/decko/config/environments/development.rb +92 -0
  75. data/lib/decko/config/environments/production.rb +65 -0
  76. data/lib/decko/config/environments/profile.rb +32 -0
  77. data/lib/decko/config/environments/test.rb +71 -0
  78. data/lib/decko/config/initializers/secret_token.rb +14 -0
  79. data/lib/decko/config/initializers/session_store.rb +2 -0
  80. data/lib/decko/engine.rb +59 -0
  81. data/lib/decko/exceptions.rb +6 -0
  82. data/lib/decko/generators/decko/USAGE +9 -0
  83. data/lib/decko/generators/decko/decko_generator.rb +265 -0
  84. data/lib/decko/generators/decko/decko_generator/interactive.rb +114 -0
  85. data/lib/decko/generators/decko/templates/Gemfile +124 -0
  86. data/lib/decko/generators/decko/templates/Rakefile +7 -0
  87. data/lib/decko/generators/decko/templates/bin/delayed_job +5 -0
  88. data/lib/decko/generators/decko/templates/bin/spring +18 -0
  89. data/lib/decko/generators/decko/templates/config.ru +11 -0
  90. data/lib/decko/generators/decko/templates/config/application.rb +91 -0
  91. data/lib/decko/generators/decko/templates/config/boot.rb +15 -0
  92. data/lib/decko/generators/decko/templates/config/cucumber.yml +1 -0
  93. data/lib/decko/generators/decko/templates/config/databases/frontbase.yml +33 -0
  94. data/lib/decko/generators/decko/templates/config/databases/ibm_db.yml +88 -0
  95. data/lib/decko/generators/decko/templates/config/databases/jdbc.yml +64 -0
  96. data/lib/decko/generators/decko/templates/config/databases/jdbcmysql.yml +35 -0
  97. data/lib/decko/generators/decko/templates/config/databases/jdbcpostgresql.yml +45 -0
  98. data/lib/decko/generators/decko/templates/config/databases/jdbcsqlite3.yml +22 -0
  99. data/lib/decko/generators/decko/templates/config/databases/mysql.yml +57 -0
  100. data/lib/decko/generators/decko/templates/config/databases/oracle.yml +41 -0
  101. data/lib/decko/generators/decko/templates/config/databases/postgresql.yml +44 -0
  102. data/lib/decko/generators/decko/templates/config/databases/sqlite3.yml +23 -0
  103. data/lib/decko/generators/decko/templates/config/environment.rb +5 -0
  104. data/lib/decko/generators/decko/templates/config/routes.erb +10 -0
  105. data/lib/decko/generators/decko/templates/gitignore +18 -0
  106. data/lib/decko/generators/decko/templates/public/files/htaccess +9 -0
  107. data/lib/decko/generators/decko/templates/public/robots.txt +12 -0
  108. data/lib/decko/generators/decko/templates/rspec +5 -0
  109. data/lib/decko/generators/decko/templates/script/decko +5 -0
  110. data/lib/decko/generators/decko/templates/simplecov +5 -0
  111. data/lib/decko/generators/decko/templates/spec/javascripts/support/deck_jasmine.yml +56 -0
  112. data/lib/decko/generators/decko/templates/spec/javascripts/support/decko_jasmine.yml +74 -0
  113. data/lib/decko/generators/decko/templates/spec/spec_helper.rb +1 -0
  114. data/lib/decko/mods_spec_helper.rb +24 -0
  115. data/lib/decko/response.rb +102 -0
  116. data/lib/decko/script_decko_loader.rb +31 -0
  117. data/lib/decko/tasks/.gitkeep +0 -0
  118. data/lib/decko/tasks/cucumber.rake +65 -0
  119. data/lib/decko/tasks/db.rake +55 -0
  120. data/lib/decko/tasks/decko.rake +170 -0
  121. data/lib/decko/tasks/decko/bootstrap.rake +121 -0
  122. data/lib/decko/tasks/decko/migrate.rake +77 -0
  123. data/lib/decko/tasks/test.rake +68 -0
  124. data/rails/application-routes.rb +6 -0
  125. data/rails/assets/ace/ext-searchbox.js +409 -0
  126. data/rails/assets/ace/mode-coffee.js +1 -0
  127. data/rails/assets/ace/mode-css.js +1 -0
  128. data/rails/assets/ace/mode-html.js +1 -0
  129. data/rails/assets/ace/mode-javascript.js +1 -0
  130. data/rails/assets/ace/mode-json.js +1 -0
  131. data/rails/assets/ace/mode-latex.js +1 -0
  132. data/rails/assets/ace/mode-scss.js +922 -0
  133. data/rails/assets/ace/theme-github.js +98 -0
  134. data/rails/assets/ace/theme-textmate.js +1 -0
  135. data/rails/assets/ace/worker-coffee.js +1 -0
  136. data/rails/assets/ace/worker-css.js +1 -0
  137. data/rails/assets/ace/worker-html.js +1 -0
  138. data/rails/assets/ace/worker-javascript.js +1 -0
  139. data/rails/assets/ace/worker-json.js +1 -0
  140. data/rails/assets/body-bg-660b752b44b87594071f3d0851ac5360.png +0 -0
  141. data/rails/assets/body-bg-d031f29b6ba7399a6862382c3552f44c.bmp +0 -0
  142. data/rails/assets/body-bg.bmp +0 -0
  143. data/rails/assets/body-bg.png +0 -0
  144. data/rails/assets/external_link-b15ab5051b4ec6f32892ed80019405b5.png +0 -0
  145. data/rails/assets/external_link.png +0 -0
  146. data/rails/assets/fonts/FontAwesome.otf +0 -0
  147. data/rails/assets/fonts/MaterialIcons-Regular.eot +0 -0
  148. data/rails/assets/fonts/MaterialIcons-Regular.ijmap +1 -0
  149. data/rails/assets/fonts/MaterialIcons-Regular.svg +2373 -0
  150. data/rails/assets/fonts/MaterialIcons-Regular.ttf +0 -0
  151. data/rails/assets/fonts/MaterialIcons-Regular.woff +0 -0
  152. data/rails/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
  153. data/rails/assets/fonts/fontawesome-webfont.eot +0 -0
  154. data/rails/assets/fonts/fontawesome-webfont.svg +2671 -0
  155. data/rails/assets/fonts/fontawesome-webfont.ttf +0 -0
  156. data/rails/assets/fonts/fontawesome-webfont.woff +0 -0
  157. data/rails/assets/fonts/fontawesome-webfont.woff2 +0 -0
  158. data/rails/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  159. data/rails/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  160. data/rails/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  161. data/rails/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  162. data/rails/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  163. data/rails/assets/jasmine/404.html +27 -0
  164. data/rails/assets/jasmine/500.html +28 -0
  165. data/rails/assets/jasmine/card_form.html +13 -0
  166. data/rails/assets/jquery-mobile/ajax-loader-d2b731d3e844ea99b7e7cbf7867f11e9.gif +0 -0
  167. data/rails/assets/jquery-mobile/ajax-loader.gif +0 -0
  168. data/rails/assets/jquery-mobile/icons-png/action-black-cbdf206f5fcd70925baa44543a4daa00.png +0 -0
  169. data/rails/assets/jquery-mobile/icons-png/action-black.png +0 -0
  170. data/rails/assets/jquery-mobile/icons-png/action-white-d84f0b6801d648581a4e11929f5a2d32.png +0 -0
  171. data/rails/assets/jquery-mobile/icons-png/action-white.png +0 -0
  172. data/rails/assets/jquery-mobile/icons-png/alert-black-59ac7785761e066e1f2ea252de9b0e21.png +0 -0
  173. data/rails/assets/jquery-mobile/icons-png/alert-black.png +0 -0
  174. data/rails/assets/jquery-mobile/icons-png/alert-white-182c69a7ce9148899f4f190148424120.png +0 -0
  175. data/rails/assets/jquery-mobile/icons-png/alert-white.png +0 -0
  176. data/rails/assets/jquery-mobile/icons-png/arrow-d-black-21860d405538900f6b795516df64a9d4.png +0 -0
  177. data/rails/assets/jquery-mobile/icons-png/arrow-d-black.png +0 -0
  178. data/rails/assets/jquery-mobile/icons-png/arrow-d-l-black-165afd2c432e27080fec5396c3d80473.png +0 -0
  179. data/rails/assets/jquery-mobile/icons-png/arrow-d-l-black.png +0 -0
  180. data/rails/assets/jquery-mobile/icons-png/arrow-d-l-white-6805a8d98143bf7b7a6a4e247bf012ab.png +0 -0
  181. data/rails/assets/jquery-mobile/icons-png/arrow-d-l-white.png +0 -0
  182. data/rails/assets/jquery-mobile/icons-png/arrow-d-r-black-fa7122e338a54119ab23bccbc506cfd8.png +0 -0
  183. data/rails/assets/jquery-mobile/icons-png/arrow-d-r-black.png +0 -0
  184. data/rails/assets/jquery-mobile/icons-png/arrow-d-r-white-216684b9bdb31f38a531e117aa954f3a.png +0 -0
  185. data/rails/assets/jquery-mobile/icons-png/arrow-d-r-white.png +0 -0
  186. data/rails/assets/jquery-mobile/icons-png/arrow-d-white-9580e3163441b122078518da2434ca17.png +0 -0
  187. data/rails/assets/jquery-mobile/icons-png/arrow-d-white.png +0 -0
  188. data/rails/assets/jquery-mobile/icons-png/arrow-l-black-084aec255becaf2fb316bfefa279a947.png +0 -0
  189. data/rails/assets/jquery-mobile/icons-png/arrow-l-black.png +0 -0
  190. data/rails/assets/jquery-mobile/icons-png/arrow-l-white-539e8b951594754da95bd2aa435f454b.png +0 -0
  191. data/rails/assets/jquery-mobile/icons-png/arrow-l-white.png +0 -0
  192. data/rails/assets/jquery-mobile/icons-png/arrow-r-black-7eaef732d6e7ac1c9b4ca7a691882aa7.png +0 -0
  193. data/rails/assets/jquery-mobile/icons-png/arrow-r-black.png +0 -0
  194. data/rails/assets/jquery-mobile/icons-png/arrow-r-white-ccb86d75bba053287e324429888a1654.png +0 -0
  195. data/rails/assets/jquery-mobile/icons-png/arrow-r-white.png +0 -0
  196. data/rails/assets/jquery-mobile/icons-png/arrow-u-black-0a58aa2208f8e48713d73fb9578ee4f9.png +0 -0
  197. data/rails/assets/jquery-mobile/icons-png/arrow-u-black.png +0 -0
  198. data/rails/assets/jquery-mobile/icons-png/arrow-u-l-black-2ff102393d9aad184f9e416295acd33e.png +0 -0
  199. data/rails/assets/jquery-mobile/icons-png/arrow-u-l-black.png +0 -0
  200. data/rails/assets/jquery-mobile/icons-png/arrow-u-l-white-dbf5a3a640d401e8549a904119b8de7a.png +0 -0
  201. data/rails/assets/jquery-mobile/icons-png/arrow-u-l-white.png +0 -0
  202. data/rails/assets/jquery-mobile/icons-png/arrow-u-r-black-ec45c6f55a7c5d324b7798c668287023.png +0 -0
  203. data/rails/assets/jquery-mobile/icons-png/arrow-u-r-black.png +0 -0
  204. data/rails/assets/jquery-mobile/icons-png/arrow-u-r-white-f73692b173855dbb37cab8ede059c3fc.png +0 -0
  205. data/rails/assets/jquery-mobile/icons-png/arrow-u-r-white.png +0 -0
  206. data/rails/assets/jquery-mobile/icons-png/arrow-u-white-bd0f3e8031d8240f3aacf669ab80df78.png +0 -0
  207. data/rails/assets/jquery-mobile/icons-png/arrow-u-white.png +0 -0
  208. data/rails/assets/jquery-mobile/icons-png/audio-black-7a7cbfa21ae335c963973a7cd3b17ffe.png +0 -0
  209. data/rails/assets/jquery-mobile/icons-png/audio-black.png +0 -0
  210. data/rails/assets/jquery-mobile/icons-png/audio-white-093dc38ea1777aca99344c6d2ebfcc8f.png +0 -0
  211. data/rails/assets/jquery-mobile/icons-png/audio-white.png +0 -0
  212. data/rails/assets/jquery-mobile/icons-png/back-black-1bc687d2f194acdf79d2728fcdd2a50f.png +0 -0
  213. data/rails/assets/jquery-mobile/icons-png/back-black.png +0 -0
  214. data/rails/assets/jquery-mobile/icons-png/back-white-f4b428a3127c9ecb6e6021c17cd5b588.png +0 -0
  215. data/rails/assets/jquery-mobile/icons-png/back-white.png +0 -0
  216. data/rails/assets/jquery-mobile/icons-png/bars-black-fe901336c248a7bba95265784f27b709.png +0 -0
  217. data/rails/assets/jquery-mobile/icons-png/bars-black.png +0 -0
  218. data/rails/assets/jquery-mobile/icons-png/bars-white-c983e57c6abd28719a312521d1f3370b.png +0 -0
  219. data/rails/assets/jquery-mobile/icons-png/bars-white.png +0 -0
  220. data/rails/assets/jquery-mobile/icons-png/bullets-black-c1de1001de576e283b57da525054a4b2.png +0 -0
  221. data/rails/assets/jquery-mobile/icons-png/bullets-black.png +0 -0
  222. data/rails/assets/jquery-mobile/icons-png/bullets-white-4f2871e980101e2bd0d661aac55cd623.png +0 -0
  223. data/rails/assets/jquery-mobile/icons-png/bullets-white.png +0 -0
  224. data/rails/assets/jquery-mobile/icons-png/calendar-black-67e5eabe68665b45263c10fd17ad17ba.png +0 -0
  225. data/rails/assets/jquery-mobile/icons-png/calendar-black.png +0 -0
  226. data/rails/assets/jquery-mobile/icons-png/calendar-white-e648512a4f976466c0df237484fcc9c4.png +0 -0
  227. data/rails/assets/jquery-mobile/icons-png/calendar-white.png +0 -0
  228. data/rails/assets/jquery-mobile/icons-png/camera-black-c5c8b5e08b68d612387428f82bd8e7b9.png +0 -0
  229. data/rails/assets/jquery-mobile/icons-png/camera-black.png +0 -0
  230. data/rails/assets/jquery-mobile/icons-png/camera-white-147393e77b3631d9ad5220cd23c54863.png +0 -0
  231. data/rails/assets/jquery-mobile/icons-png/camera-white.png +0 -0
  232. data/rails/assets/jquery-mobile/icons-png/carat-d-black-291da5f63efc80c062765bca7d939dc9.png +0 -0
  233. data/rails/assets/jquery-mobile/icons-png/carat-d-black.png +0 -0
  234. data/rails/assets/jquery-mobile/icons-png/carat-d-white-891a11602af9a5ffecb4036c42671b32.png +0 -0
  235. data/rails/assets/jquery-mobile/icons-png/carat-d-white.png +0 -0
  236. data/rails/assets/jquery-mobile/icons-png/carat-l-black-8d842b168e8722758ebb9e0e20367dc2.png +0 -0
  237. data/rails/assets/jquery-mobile/icons-png/carat-l-black.png +0 -0
  238. data/rails/assets/jquery-mobile/icons-png/carat-l-white-3c757452f0f441b544023f5ff8087f25.png +0 -0
  239. data/rails/assets/jquery-mobile/icons-png/carat-l-white.png +0 -0
  240. data/rails/assets/jquery-mobile/icons-png/carat-r-black-2ded93b56fcb5b25c7a5b3776e5e65d6.png +0 -0
  241. data/rails/assets/jquery-mobile/icons-png/carat-r-black.png +0 -0
  242. data/rails/assets/jquery-mobile/icons-png/carat-r-white-b176f8f6a2b1cc081ffd10c5b1fa596f.png +0 -0
  243. data/rails/assets/jquery-mobile/icons-png/carat-r-white.png +0 -0
  244. data/rails/assets/jquery-mobile/icons-png/carat-u-black-23e097594ad948f851e4db090aa4136d.png +0 -0
  245. data/rails/assets/jquery-mobile/icons-png/carat-u-black.png +0 -0
  246. data/rails/assets/jquery-mobile/icons-png/carat-u-white-c056d77e74680adf24684602bf581e90.png +0 -0
  247. data/rails/assets/jquery-mobile/icons-png/carat-u-white.png +0 -0
  248. data/rails/assets/jquery-mobile/icons-png/check-black-c30e2bdff08c3250d5d9a5016c3a373c.png +0 -0
  249. data/rails/assets/jquery-mobile/icons-png/check-black.png +0 -0
  250. data/rails/assets/jquery-mobile/icons-png/check-white-6bef746213ce5d01ec057a2e57eba03e.png +0 -0
  251. data/rails/assets/jquery-mobile/icons-png/check-white.png +0 -0
  252. data/rails/assets/jquery-mobile/icons-png/clock-black-426a75bcd9a7fcb19767bdbac8d81e93.png +0 -0
  253. data/rails/assets/jquery-mobile/icons-png/clock-black.png +0 -0
  254. data/rails/assets/jquery-mobile/icons-png/clock-white-eb0b22357bf8f45b9b28b2998f6683ac.png +0 -0
  255. data/rails/assets/jquery-mobile/icons-png/clock-white.png +0 -0
  256. data/rails/assets/jquery-mobile/icons-png/cloud-black-dd4382e46e8039c6eb410c90b34a7a7d.png +0 -0
  257. data/rails/assets/jquery-mobile/icons-png/cloud-black.png +0 -0
  258. data/rails/assets/jquery-mobile/icons-png/cloud-white-b88a47dc043a97a4eac74b1efc62a656.png +0 -0
  259. data/rails/assets/jquery-mobile/icons-png/cloud-white.png +0 -0
  260. data/rails/assets/jquery-mobile/icons-png/comment-black-f4168860db0754ff9cf03fc9946b3379.png +0 -0
  261. data/rails/assets/jquery-mobile/icons-png/comment-black.png +0 -0
  262. data/rails/assets/jquery-mobile/icons-png/comment-white-6b999cb86d6aca17084e27a9f67c8c24.png +0 -0
  263. data/rails/assets/jquery-mobile/icons-png/comment-white.png +0 -0
  264. data/rails/assets/jquery-mobile/icons-png/delete-black-7d8d7896c8845c89d000fa8e97523701.png +0 -0
  265. data/rails/assets/jquery-mobile/icons-png/delete-black.png +0 -0
  266. data/rails/assets/jquery-mobile/icons-png/delete-white-bc789fa534e359f9fee233213eb468de.png +0 -0
  267. data/rails/assets/jquery-mobile/icons-png/delete-white.png +0 -0
  268. data/rails/assets/jquery-mobile/icons-png/edit-black-ec5837b59ac116c6716cd7f1c63e9fca.png +0 -0
  269. data/rails/assets/jquery-mobile/icons-png/edit-black.png +0 -0
  270. data/rails/assets/jquery-mobile/icons-png/edit-white-bdfa858ef0dec5b5ea2297c52c0bea03.png +0 -0
  271. data/rails/assets/jquery-mobile/icons-png/edit-white.png +0 -0
  272. data/rails/assets/jquery-mobile/icons-png/eye-black-6530b6b67ce6f3165d194e79beb9755e.png +0 -0
  273. data/rails/assets/jquery-mobile/icons-png/eye-black.png +0 -0
  274. data/rails/assets/jquery-mobile/icons-png/eye-white-e44323bf6b85c5b1b1fdf66df97a4b8c.png +0 -0
  275. data/rails/assets/jquery-mobile/icons-png/eye-white.png +0 -0
  276. data/rails/assets/jquery-mobile/icons-png/forbidden-black-4cb718a887e88dbaabf04eef0f2312fe.png +0 -0
  277. data/rails/assets/jquery-mobile/icons-png/forbidden-black.png +0 -0
  278. data/rails/assets/jquery-mobile/icons-png/forbidden-white-9138b0037c40f353bc794285384cb1e6.png +0 -0
  279. data/rails/assets/jquery-mobile/icons-png/forbidden-white.png +0 -0
  280. data/rails/assets/jquery-mobile/icons-png/forward-black-dc3302f286f5edebdd8de5953ba0f4be.png +0 -0
  281. data/rails/assets/jquery-mobile/icons-png/forward-black.png +0 -0
  282. data/rails/assets/jquery-mobile/icons-png/forward-white-3c71ad481331c6cd2e55678de52e321b.png +0 -0
  283. data/rails/assets/jquery-mobile/icons-png/forward-white.png +0 -0
  284. data/rails/assets/jquery-mobile/icons-png/gear-black-1877187237f71b7ba7fad9dae2afbff8.png +0 -0
  285. data/rails/assets/jquery-mobile/icons-png/gear-black.png +0 -0
  286. data/rails/assets/jquery-mobile/icons-png/gear-white-3760f8925907885b77332c927c6f69f1.png +0 -0
  287. data/rails/assets/jquery-mobile/icons-png/gear-white.png +0 -0
  288. data/rails/assets/jquery-mobile/icons-png/grid-black-ef43287886d17dad1edfd42d61e77bf9.png +0 -0
  289. data/rails/assets/jquery-mobile/icons-png/grid-black.png +0 -0
  290. data/rails/assets/jquery-mobile/icons-png/grid-white-a90cad859111e48260bb7dd58e089421.png +0 -0
  291. data/rails/assets/jquery-mobile/icons-png/grid-white.png +0 -0
  292. data/rails/assets/jquery-mobile/icons-png/heart-black-1d83e64216d8604f7e140e496585dc2d.png +0 -0
  293. data/rails/assets/jquery-mobile/icons-png/heart-black.png +0 -0
  294. data/rails/assets/jquery-mobile/icons-png/heart-white-70fb68f6f14d6eed8bcb51b9bffb7a1e.png +0 -0
  295. data/rails/assets/jquery-mobile/icons-png/heart-white.png +0 -0
  296. data/rails/assets/jquery-mobile/icons-png/home-black-8839e5c9a8e11a4820f29e49d9a940e1.png +0 -0
  297. data/rails/assets/jquery-mobile/icons-png/home-black.png +0 -0
  298. data/rails/assets/jquery-mobile/icons-png/home-white-7bb7a707d7fec69a6e87aa15cc81a6df.png +0 -0
  299. data/rails/assets/jquery-mobile/icons-png/home-white.png +0 -0
  300. data/rails/assets/jquery-mobile/icons-png/info-black-9b6531eabb8ca3757fa8d7ed9b2a9c61.png +0 -0
  301. data/rails/assets/jquery-mobile/icons-png/info-black.png +0 -0
  302. data/rails/assets/jquery-mobile/icons-png/info-white-8f0b3be835d9c4dc7ef68aaa14360475.png +0 -0
  303. data/rails/assets/jquery-mobile/icons-png/info-white.png +0 -0
  304. data/rails/assets/jquery-mobile/icons-png/location-black-2d64ab16b9762a79da26b57026a8c013.png +0 -0
  305. data/rails/assets/jquery-mobile/icons-png/location-black.png +0 -0
  306. data/rails/assets/jquery-mobile/icons-png/location-white-f20a8601e6921cb9e06551da88746269.png +0 -0
  307. data/rails/assets/jquery-mobile/icons-png/location-white.png +0 -0
  308. data/rails/assets/jquery-mobile/icons-png/lock-black-80468c8080ca8728335411fc2e946bc3.png +0 -0
  309. data/rails/assets/jquery-mobile/icons-png/lock-black.png +0 -0
  310. data/rails/assets/jquery-mobile/icons-png/lock-white-6a9da31e3af79379b9c74a0b299e498b.png +0 -0
  311. data/rails/assets/jquery-mobile/icons-png/lock-white.png +0 -0
  312. data/rails/assets/jquery-mobile/icons-png/mail-black-1ac12d4f1561c196c5b976e3b0271a47.png +0 -0
  313. data/rails/assets/jquery-mobile/icons-png/mail-black.png +0 -0
  314. data/rails/assets/jquery-mobile/icons-png/mail-white-cf3c78ddf8627b915455815d00f4c813.png +0 -0
  315. data/rails/assets/jquery-mobile/icons-png/mail-white.png +0 -0
  316. data/rails/assets/jquery-mobile/icons-png/minus-black-528a578f797a7476ef7e553c4f319724.png +0 -0
  317. data/rails/assets/jquery-mobile/icons-png/minus-black.png +0 -0
  318. data/rails/assets/jquery-mobile/icons-png/minus-white-0a992b9039a4fc5eb017cd32aea41f00.png +0 -0
  319. data/rails/assets/jquery-mobile/icons-png/minus-white.png +0 -0
  320. data/rails/assets/jquery-mobile/icons-png/navigation-black-f290da883ab1408425ac13b0c9d55362.png +0 -0
  321. data/rails/assets/jquery-mobile/icons-png/navigation-black.png +0 -0
  322. data/rails/assets/jquery-mobile/icons-png/navigation-white-c38219949e27a10f27fb1dfe3f101e2b.png +0 -0
  323. data/rails/assets/jquery-mobile/icons-png/navigation-white.png +0 -0
  324. data/rails/assets/jquery-mobile/icons-png/phone-black-8edd665a30189221a6ff370a5913f9c8.png +0 -0
  325. data/rails/assets/jquery-mobile/icons-png/phone-black.png +0 -0
  326. data/rails/assets/jquery-mobile/icons-png/phone-white-30cc61da132a3801c8441353f63dd174.png +0 -0
  327. data/rails/assets/jquery-mobile/icons-png/phone-white.png +0 -0
  328. data/rails/assets/jquery-mobile/icons-png/plus-black-ee8694a3f99b71fa84279d6f47bc69aa.png +0 -0
  329. data/rails/assets/jquery-mobile/icons-png/plus-black.png +0 -0
  330. data/rails/assets/jquery-mobile/icons-png/plus-white-594f2cf43798441607dd1a7a9b9bb68e.png +0 -0
  331. data/rails/assets/jquery-mobile/icons-png/plus-white.png +0 -0
  332. data/rails/assets/jquery-mobile/icons-png/power-black-c31a9b9ca22ce18710d4342c897f7a60.png +0 -0
  333. data/rails/assets/jquery-mobile/icons-png/power-black.png +0 -0
  334. data/rails/assets/jquery-mobile/icons-png/power-white-e3d0f6f4e1b54675c702dd0ef9dd2819.png +0 -0
  335. data/rails/assets/jquery-mobile/icons-png/power-white.png +0 -0
  336. data/rails/assets/jquery-mobile/icons-png/recycle-black-0649d7916693bcabe5b2bee1a26678df.png +0 -0
  337. data/rails/assets/jquery-mobile/icons-png/recycle-black.png +0 -0
  338. data/rails/assets/jquery-mobile/icons-png/recycle-white-f63febb141a2739223217f839c5592a2.png +0 -0
  339. data/rails/assets/jquery-mobile/icons-png/recycle-white.png +0 -0
  340. data/rails/assets/jquery-mobile/icons-png/refresh-black-b9c418000249bc0b23fa20ef2a73dcce.png +0 -0
  341. data/rails/assets/jquery-mobile/icons-png/refresh-black.png +0 -0
  342. data/rails/assets/jquery-mobile/icons-png/refresh-white-741c1f6cc39d51c32a142dfab708ca8c.png +0 -0
  343. data/rails/assets/jquery-mobile/icons-png/refresh-white.png +0 -0
  344. data/rails/assets/jquery-mobile/icons-png/search-black-e67608c6619a436c16bd49df4a00f7a6.png +0 -0
  345. data/rails/assets/jquery-mobile/icons-png/search-black.png +0 -0
  346. data/rails/assets/jquery-mobile/icons-png/search-white-49687883de84b391661162fb73604434.png +0 -0
  347. data/rails/assets/jquery-mobile/icons-png/search-white.png +0 -0
  348. data/rails/assets/jquery-mobile/icons-png/shop-black-c20b263467ce2a8de1b386e775be1d5e.png +0 -0
  349. data/rails/assets/jquery-mobile/icons-png/shop-black.png +0 -0
  350. data/rails/assets/jquery-mobile/icons-png/shop-white-80a8c9c4d2e838919941423dffe0801c.png +0 -0
  351. data/rails/assets/jquery-mobile/icons-png/shop-white.png +0 -0
  352. data/rails/assets/jquery-mobile/icons-png/star-black-a6bc8b485ff200c1deab9e9e77f52b32.png +0 -0
  353. data/rails/assets/jquery-mobile/icons-png/star-black.png +0 -0
  354. data/rails/assets/jquery-mobile/icons-png/star-white-8b620c1dced3da828d9edde9f6022249.png +0 -0
  355. data/rails/assets/jquery-mobile/icons-png/star-white.png +0 -0
  356. data/rails/assets/jquery-mobile/icons-png/tag-black-4fdb325b352b565f422193a80c1e4bfd.png +0 -0
  357. data/rails/assets/jquery-mobile/icons-png/tag-black.png +0 -0
  358. data/rails/assets/jquery-mobile/icons-png/tag-white-a35a79ed983ce834a8ddccefeaebce15.png +0 -0
  359. data/rails/assets/jquery-mobile/icons-png/tag-white.png +0 -0
  360. data/rails/assets/jquery-mobile/icons-png/user-black-85accf54554aa97069b5939b16b5e681.png +0 -0
  361. data/rails/assets/jquery-mobile/icons-png/user-black.png +0 -0
  362. data/rails/assets/jquery-mobile/icons-png/user-white-9abd9f6162d36152c841e475c4aaf118.png +0 -0
  363. data/rails/assets/jquery-mobile/icons-png/user-white.png +0 -0
  364. data/rails/assets/jquery-mobile/icons-png/video-black-1d5a483c5ce892d0012c60010286396b.png +0 -0
  365. data/rails/assets/jquery-mobile/icons-png/video-black.png +0 -0
  366. data/rails/assets/jquery-mobile/icons-png/video-white-80a2ae6a9b790e6ee05680fcdee8905a.png +0 -0
  367. data/rails/assets/jquery-mobile/icons-png/video-white.png +0 -0
  368. data/rails/assets/jquery-ui/animated-overlay-602eee4c79a4796b02bb6442948c9e28.gif +0 -0
  369. data/rails/assets/jquery-ui/animated-overlay.gif +0 -0
  370. data/rails/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-7d1197a52442bc56fcad60d0390f4b32.png +0 -0
  371. data/rails/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  372. data/rails/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100-3c4b974defa5e8bdaf8a603034c4435e.png +0 -0
  373. data/rails/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
  374. data/rails/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400-38c2dea4d046fd3f56cc3996e2e6018b.png +0 -0
  375. data/rails/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  376. data/rails/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400-ddb7ee7527bff283054406c50e597e1e.png +0 -0
  377. data/rails/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
  378. data/rails/assets/jquery-ui/ui-bg_glass_75_dadada_1x400-d618461418b1ebc6b7996979f4c3dc92.png +0 -0
  379. data/rails/assets/jquery-ui/ui-bg_glass_75_dadada_1x400.png +0 -0
  380. data/rails/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400-48d8d545f708e5870a965ce9df8b0e38.png +0 -0
  381. data/rails/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  382. data/rails/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400-f3526b8f82249928f0a6baf044204b15.png +0 -0
  383. data/rails/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  384. data/rails/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-cec5c56503b8480f834c3fce35dae8df.png +0 -0
  385. data/rails/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  386. data/rails/assets/jquery-ui/ui-icons_222222_256x240-b1eb177a51ea7925448318a26d988842.png +0 -0
  387. data/rails/assets/jquery-ui/ui-icons_222222_256x240.png +0 -0
  388. data/rails/assets/jquery-ui/ui-icons_2e83ff_256x240-49c2da9cac2dc565265586f716491298.png +0 -0
  389. data/rails/assets/jquery-ui/ui-icons_2e83ff_256x240.png +0 -0
  390. data/rails/assets/jquery-ui/ui-icons_454545_256x240-68b2fe3268f7604fb0767a0372e2db85.png +0 -0
  391. data/rails/assets/jquery-ui/ui-icons_454545_256x240.png +0 -0
  392. data/rails/assets/jquery-ui/ui-icons_888888_256x240-8040cfcc88792375b7788feb59189eef.png +0 -0
  393. data/rails/assets/jquery-ui/ui-icons_888888_256x240.png +0 -0
  394. data/rails/assets/jquery-ui/ui-icons_cd0a0a_256x240-d4a62216bf6f0cd0071149890763a5ff.png +0 -0
  395. data/rails/assets/jquery-ui/ui-icons_cd0a0a_256x240.png +0 -0
  396. data/rails/assets/jquery.min-388372ef65cc311f6a3df4a6ceac8d22.map +1 -0
  397. data/rails/assets/jquery.min.map +1 -0
  398. data/rails/assets/manifest.yml +617 -0
  399. data/rails/assets/smoothness/animated-overlay-602eee4c79a4796b02bb6442948c9e28.gif +0 -0
  400. data/rails/assets/smoothness/animated-overlay.gif +0 -0
  401. data/rails/assets/smoothness/ui-bg_flat_0_aaaaaa_40x100-31613497e63975a54520b7065b125dea.png +0 -0
  402. data/rails/assets/smoothness/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  403. data/rails/assets/smoothness/ui-bg_flat_75_ffffff_40x100-f4b0e20e6f4c83b9f52cf062ed0f5284.png +0 -0
  404. data/rails/assets/smoothness/ui-bg_flat_75_ffffff_40x100.png +0 -0
  405. data/rails/assets/smoothness/ui-bg_glass_55_fbf9ee_1x400-e3606d6e7ad67486ffdc83edca64d4c5.png +0 -0
  406. data/rails/assets/smoothness/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  407. data/rails/assets/smoothness/ui-bg_glass_65_ffffff_1x400-dcec96932b90ff4cd4fea91284a6e9a3.png +0 -0
  408. data/rails/assets/smoothness/ui-bg_glass_65_ffffff_1x400.png +0 -0
  409. data/rails/assets/smoothness/ui-bg_glass_75_dadada_1x400-a2310f533684ede4f1216d7299b5cd58.png +0 -0
  410. data/rails/assets/smoothness/ui-bg_glass_75_dadada_1x400.png +0 -0
  411. data/rails/assets/smoothness/ui-bg_glass_75_e6e6e6_1x400-d872f3a0a02dea609e4b0321520236d9.png +0 -0
  412. data/rails/assets/smoothness/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  413. data/rails/assets/smoothness/ui-bg_glass_95_fef1ec_1x400-9ccaed8a65a3c285c16a73bdf03a69b3.png +0 -0
  414. data/rails/assets/smoothness/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  415. data/rails/assets/smoothness/ui-bg_highlight-soft_75_cccccc_1x100-2ef1d227b5c0f33ce3c5e45afa953991.png +0 -0
  416. data/rails/assets/smoothness/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  417. data/rails/assets/smoothness/ui-icons_222222_256x240-0675a996f0bdc78890f7b312c543b06a.png +0 -0
  418. data/rails/assets/smoothness/ui-icons_222222_256x240.png +0 -0
  419. data/rails/assets/smoothness/ui-icons_2e83ff_256x240-6aea736f81a417977efd77f183519a54.png +0 -0
  420. data/rails/assets/smoothness/ui-icons_2e83ff_256x240.png +0 -0
  421. data/rails/assets/smoothness/ui-icons_454545_256x240-6f4361f45745fb0cd7b0cc2851dc1cc3.png +0 -0
  422. data/rails/assets/smoothness/ui-icons_454545_256x240.png +0 -0
  423. data/rails/assets/smoothness/ui-icons_888888_256x240-8f6818bd8631ba3489de718e26c7e6cf.png +0 -0
  424. data/rails/assets/smoothness/ui-icons_888888_256x240.png +0 -0
  425. data/rails/assets/smoothness/ui-icons_cd0a0a_256x240-2969ddba6d0a9c62603a4aa85a363cda.png +0 -0
  426. data/rails/assets/smoothness/ui-icons_cd0a0a_256x240.png +0 -0
  427. data/rails/assets/tinymce/jquery.tinymce.js +1 -0
  428. data/rails/assets/tinymce/langs/en.js +1 -0
  429. data/rails/assets/tinymce/license.txt +504 -0
  430. data/rails/assets/tinymce/plugins/advhr/css/advhr.css +5 -0
  431. data/rails/assets/tinymce/plugins/advhr/editor_plugin.js +1 -0
  432. data/rails/assets/tinymce/plugins/advhr/editor_plugin_src.js +57 -0
  433. data/rails/assets/tinymce/plugins/advhr/js/rule.js +43 -0
  434. data/rails/assets/tinymce/plugins/advhr/langs/en_dlg.js +1 -0
  435. data/rails/assets/tinymce/plugins/advhr/rule.htm +58 -0
  436. data/rails/assets/tinymce/plugins/advimage/css/advimage.css +13 -0
  437. data/rails/assets/tinymce/plugins/advimage/editor_plugin.js +1 -0
  438. data/rails/assets/tinymce/plugins/advimage/editor_plugin_src.js +50 -0
  439. data/rails/assets/tinymce/plugins/advimage/image.htm +235 -0
  440. data/rails/assets/tinymce/plugins/advimage/img/sample.gif +0 -0
  441. data/rails/assets/tinymce/plugins/advimage/js/image.js +464 -0
  442. data/rails/assets/tinymce/plugins/advimage/langs/en_dlg.js +1 -0
  443. data/rails/assets/tinymce/plugins/advlink/css/advlink.css +8 -0
  444. data/rails/assets/tinymce/plugins/advlink/editor_plugin.js +1 -0
  445. data/rails/assets/tinymce/plugins/advlink/editor_plugin_src.js +61 -0
  446. data/rails/assets/tinymce/plugins/advlink/js/advlink.js +543 -0
  447. data/rails/assets/tinymce/plugins/advlink/langs/en_dlg.js +1 -0
  448. data/rails/assets/tinymce/plugins/advlink/link.htm +338 -0
  449. data/rails/assets/tinymce/plugins/advlist/editor_plugin.js +1 -0
  450. data/rails/assets/tinymce/plugins/advlist/editor_plugin_src.js +176 -0
  451. data/rails/assets/tinymce/plugins/autolink/editor_plugin.js +1 -0
  452. data/rails/assets/tinymce/plugins/autolink/editor_plugin_src.js +184 -0
  453. data/rails/assets/tinymce/plugins/autoresize/editor_plugin.js +1 -0
  454. data/rails/assets/tinymce/plugins/autoresize/editor_plugin_src.js +119 -0
  455. data/rails/assets/tinymce/plugins/autosave/editor_plugin.js +1 -0
  456. data/rails/assets/tinymce/plugins/autosave/editor_plugin_src.js +433 -0
  457. data/rails/assets/tinymce/plugins/bbcode/editor_plugin.js +1 -0
  458. data/rails/assets/tinymce/plugins/bbcode/editor_plugin_src.js +120 -0
  459. data/rails/assets/tinymce/plugins/contextmenu/editor_plugin.js +1 -0
  460. data/rails/assets/tinymce/plugins/contextmenu/editor_plugin_src.js +163 -0
  461. data/rails/assets/tinymce/plugins/directionality/editor_plugin.js +1 -0
  462. data/rails/assets/tinymce/plugins/directionality/editor_plugin_src.js +85 -0
  463. data/rails/assets/tinymce/plugins/emotions/editor_plugin.js +1 -0
  464. data/rails/assets/tinymce/plugins/emotions/editor_plugin_src.js +43 -0
  465. data/rails/assets/tinymce/plugins/emotions/emotions.htm +42 -0
  466. data/rails/assets/tinymce/plugins/emotions/img/smiley-cool.gif +0 -0
  467. data/rails/assets/tinymce/plugins/emotions/img/smiley-cry.gif +0 -0
  468. data/rails/assets/tinymce/plugins/emotions/img/smiley-embarassed.gif +0 -0
  469. data/rails/assets/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  470. data/rails/assets/tinymce/plugins/emotions/img/smiley-frown.gif +0 -0
  471. data/rails/assets/tinymce/plugins/emotions/img/smiley-innocent.gif +0 -0
  472. data/rails/assets/tinymce/plugins/emotions/img/smiley-kiss.gif +0 -0
  473. data/rails/assets/tinymce/plugins/emotions/img/smiley-laughing.gif +0 -0
  474. data/rails/assets/tinymce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  475. data/rails/assets/tinymce/plugins/emotions/img/smiley-sealed.gif +0 -0
  476. data/rails/assets/tinymce/plugins/emotions/img/smiley-smile.gif +0 -0
  477. data/rails/assets/tinymce/plugins/emotions/img/smiley-surprised.gif +0 -0
  478. data/rails/assets/tinymce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  479. data/rails/assets/tinymce/plugins/emotions/img/smiley-undecided.gif +0 -0
  480. data/rails/assets/tinymce/plugins/emotions/img/smiley-wink.gif +0 -0
  481. data/rails/assets/tinymce/plugins/emotions/img/smiley-yell.gif +0 -0
  482. data/rails/assets/tinymce/plugins/emotions/js/emotions.js +43 -0
  483. data/rails/assets/tinymce/plugins/emotions/langs/en_dlg.js +1 -0
  484. data/rails/assets/tinymce/plugins/example/dialog.htm +22 -0
  485. data/rails/assets/tinymce/plugins/example/editor_plugin.js +1 -0
  486. data/rails/assets/tinymce/plugins/example/editor_plugin_src.js +84 -0
  487. data/rails/assets/tinymce/plugins/example/img/example.gif +0 -0
  488. data/rails/assets/tinymce/plugins/example/js/dialog.js +19 -0
  489. data/rails/assets/tinymce/plugins/example/langs/en.js +3 -0
  490. data/rails/assets/tinymce/plugins/example/langs/en_dlg.js +3 -0
  491. data/rails/assets/tinymce/plugins/example_dependency/editor_plugin.js +1 -0
  492. data/rails/assets/tinymce/plugins/example_dependency/editor_plugin_src.js +50 -0
  493. data/rails/assets/tinymce/plugins/fullpage/css/fullpage.css +143 -0
  494. data/rails/assets/tinymce/plugins/fullpage/editor_plugin.js +1 -0
  495. data/rails/assets/tinymce/plugins/fullpage/editor_plugin_src.js +405 -0
  496. data/rails/assets/tinymce/plugins/fullpage/fullpage.htm +259 -0
  497. data/rails/assets/tinymce/plugins/fullpage/js/fullpage.js +232 -0
  498. data/rails/assets/tinymce/plugins/fullpage/langs/en_dlg.js +1 -0
  499. data/rails/assets/tinymce/plugins/fullscreen/editor_plugin.js +1 -0
  500. data/rails/assets/tinymce/plugins/fullscreen/editor_plugin_src.js +234 -0
  501. data/rails/assets/tinymce/plugins/fullscreen/fullscreen.htm +117 -0
  502. data/rails/assets/tinymce/plugins/iespell/editor_plugin.js +1 -0
  503. data/rails/assets/tinymce/plugins/iespell/editor_plugin_src.js +54 -0
  504. data/rails/assets/tinymce/plugins/inlinepopups/editor_plugin.js +1 -0
  505. data/rails/assets/tinymce/plugins/inlinepopups/editor_plugin_src.js +699 -0
  506. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  507. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  508. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  509. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  510. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  511. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  512. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  513. data/rails/assets/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  514. data/rails/assets/tinymce/plugins/inlinepopups/template.htm +387 -0
  515. data/rails/assets/tinymce/plugins/insertdatetime/editor_plugin.js +1 -0
  516. data/rails/assets/tinymce/plugins/insertdatetime/editor_plugin_src.js +83 -0
  517. data/rails/assets/tinymce/plugins/layer/editor_plugin.js +1 -0
  518. data/rails/assets/tinymce/plugins/layer/editor_plugin_src.js +262 -0
  519. data/rails/assets/tinymce/plugins/legacyoutput/editor_plugin.js +1 -0
  520. data/rails/assets/tinymce/plugins/legacyoutput/editor_plugin_src.js +139 -0
  521. data/rails/assets/tinymce/plugins/lists/editor_plugin.js +1 -0
  522. data/rails/assets/tinymce/plugins/lists/editor_plugin_src.js +955 -0
  523. data/rails/assets/tinymce/plugins/media/css/media.css +17 -0
  524. data/rails/assets/tinymce/plugins/media/editor_plugin.js +1 -0
  525. data/rails/assets/tinymce/plugins/media/editor_plugin_src.js +898 -0
  526. data/rails/assets/tinymce/plugins/media/js/embed.js +73 -0
  527. data/rails/assets/tinymce/plugins/media/js/media.js +513 -0
  528. data/rails/assets/tinymce/plugins/media/langs/en_dlg.js +1 -0
  529. data/rails/assets/tinymce/plugins/media/media.htm +922 -0
  530. data/rails/assets/tinymce/plugins/media/moxieplayer.swf +0 -0
  531. data/rails/assets/tinymce/plugins/nonbreaking/editor_plugin.js +1 -0
  532. data/rails/assets/tinymce/plugins/nonbreaking/editor_plugin_src.js +54 -0
  533. data/rails/assets/tinymce/plugins/noneditable/editor_plugin.js +1 -0
  534. data/rails/assets/tinymce/plugins/noneditable/editor_plugin_src.js +537 -0
  535. data/rails/assets/tinymce/plugins/pagebreak/editor_plugin.js +1 -0
  536. data/rails/assets/tinymce/plugins/pagebreak/editor_plugin_src.js +74 -0
  537. data/rails/assets/tinymce/plugins/paste/editor_plugin.js +1 -0
  538. data/rails/assets/tinymce/plugins/paste/editor_plugin_src.js +885 -0
  539. data/rails/assets/tinymce/plugins/paste/js/pastetext.js +36 -0
  540. data/rails/assets/tinymce/plugins/paste/js/pasteword.js +51 -0
  541. data/rails/assets/tinymce/plugins/paste/langs/en_dlg.js +1 -0
  542. data/rails/assets/tinymce/plugins/paste/pastetext.htm +27 -0
  543. data/rails/assets/tinymce/plugins/paste/pasteword.htm +21 -0
  544. data/rails/assets/tinymce/plugins/preview/editor_plugin.js +1 -0
  545. data/rails/assets/tinymce/plugins/preview/editor_plugin_src.js +53 -0
  546. data/rails/assets/tinymce/plugins/preview/example.html +28 -0
  547. data/rails/assets/tinymce/plugins/preview/jscripts/embed.js +73 -0
  548. data/rails/assets/tinymce/plugins/preview/preview.html +17 -0
  549. data/rails/assets/tinymce/plugins/print/editor_plugin.js +1 -0
  550. data/rails/assets/tinymce/plugins/print/editor_plugin_src.js +34 -0
  551. data/rails/assets/tinymce/plugins/save/editor_plugin.js +1 -0
  552. data/rails/assets/tinymce/plugins/save/editor_plugin_src.js +101 -0
  553. data/rails/assets/tinymce/plugins/searchreplace/css/searchreplace.css +6 -0
  554. data/rails/assets/tinymce/plugins/searchreplace/editor_plugin.js +1 -0
  555. data/rails/assets/tinymce/plugins/searchreplace/editor_plugin_src.js +61 -0
  556. data/rails/assets/tinymce/plugins/searchreplace/js/searchreplace.js +148 -0
  557. data/rails/assets/tinymce/plugins/searchreplace/langs/en_dlg.js +1 -0
  558. data/rails/assets/tinymce/plugins/searchreplace/searchreplace.htm +100 -0
  559. data/rails/assets/tinymce/plugins/spellchecker/css/content.css +1 -0
  560. data/rails/assets/tinymce/plugins/spellchecker/editor_plugin.js +1 -0
  561. data/rails/assets/tinymce/plugins/spellchecker/editor_plugin_src.js +471 -0
  562. data/rails/assets/tinymce/plugins/spellchecker/img/wline.gif +0 -0
  563. data/rails/assets/tinymce/plugins/style/css/props.css +14 -0
  564. data/rails/assets/tinymce/plugins/style/editor_plugin.js +1 -0
  565. data/rails/assets/tinymce/plugins/style/editor_plugin_src.js +71 -0
  566. data/rails/assets/tinymce/plugins/style/js/props.js +709 -0
  567. data/rails/assets/tinymce/plugins/style/langs/en_dlg.js +1 -0
  568. data/rails/assets/tinymce/plugins/style/props.htm +845 -0
  569. data/rails/assets/tinymce/plugins/style/readme.txt +19 -0
  570. data/rails/assets/tinymce/plugins/tabfocus/editor_plugin.js +1 -0
  571. data/rails/assets/tinymce/plugins/tabfocus/editor_plugin_src.js +122 -0
  572. data/rails/assets/tinymce/plugins/table/cell.htm +180 -0
  573. data/rails/assets/tinymce/plugins/table/css/cell.css +17 -0
  574. data/rails/assets/tinymce/plugins/table/css/row.css +25 -0
  575. data/rails/assets/tinymce/plugins/table/css/table.css +13 -0
  576. data/rails/assets/tinymce/plugins/table/editor_plugin.js +1 -0
  577. data/rails/assets/tinymce/plugins/table/editor_plugin_src.js +1456 -0
  578. data/rails/assets/tinymce/plugins/table/js/cell.js +319 -0
  579. data/rails/assets/tinymce/plugins/table/js/merge_cells.js +27 -0
  580. data/rails/assets/tinymce/plugins/table/js/row.js +254 -0
  581. data/rails/assets/tinymce/plugins/table/js/table.js +501 -0
  582. data/rails/assets/tinymce/plugins/table/langs/en_dlg.js +1 -0
  583. data/rails/assets/tinymce/plugins/table/merge_cells.htm +32 -0
  584. data/rails/assets/tinymce/plugins/table/row.htm +158 -0
  585. data/rails/assets/tinymce/plugins/table/table.htm +188 -0
  586. data/rails/assets/tinymce/plugins/template/blank.htm +12 -0
  587. data/rails/assets/tinymce/plugins/template/css/template.css +23 -0
  588. data/rails/assets/tinymce/plugins/template/editor_plugin.js +1 -0
  589. data/rails/assets/tinymce/plugins/template/editor_plugin_src.js +159 -0
  590. data/rails/assets/tinymce/plugins/template/js/template.js +106 -0
  591. data/rails/assets/tinymce/plugins/template/langs/en_dlg.js +1 -0
  592. data/rails/assets/tinymce/plugins/template/template.htm +31 -0
  593. data/rails/assets/tinymce/plugins/visualblocks/css/visualblocks.css +21 -0
  594. data/rails/assets/tinymce/plugins/visualblocks/editor_plugin.js +1 -0
  595. data/rails/assets/tinymce/plugins/visualblocks/editor_plugin_src.js +63 -0
  596. data/rails/assets/tinymce/plugins/visualchars/editor_plugin.js +1 -0
  597. data/rails/assets/tinymce/plugins/visualchars/editor_plugin_src.js +83 -0
  598. data/rails/assets/tinymce/plugins/wordcount/editor_plugin.js +1 -0
  599. data/rails/assets/tinymce/plugins/wordcount/editor_plugin_src.js +122 -0
  600. data/rails/assets/tinymce/plugins/xhtmlxtras/abbr.htm +142 -0
  601. data/rails/assets/tinymce/plugins/xhtmlxtras/acronym.htm +142 -0
  602. data/rails/assets/tinymce/plugins/xhtmlxtras/attributes.htm +149 -0
  603. data/rails/assets/tinymce/plugins/xhtmlxtras/cite.htm +142 -0
  604. data/rails/assets/tinymce/plugins/xhtmlxtras/css/attributes.css +11 -0
  605. data/rails/assets/tinymce/plugins/xhtmlxtras/css/popup.css +9 -0
  606. data/rails/assets/tinymce/plugins/xhtmlxtras/del.htm +162 -0
  607. data/rails/assets/tinymce/plugins/xhtmlxtras/editor_plugin.js +1 -0
  608. data/rails/assets/tinymce/plugins/xhtmlxtras/editor_plugin_src.js +132 -0
  609. data/rails/assets/tinymce/plugins/xhtmlxtras/ins.htm +162 -0
  610. data/rails/assets/tinymce/plugins/xhtmlxtras/js/abbr.js +28 -0
  611. data/rails/assets/tinymce/plugins/xhtmlxtras/js/acronym.js +28 -0
  612. data/rails/assets/tinymce/plugins/xhtmlxtras/js/attributes.js +111 -0
  613. data/rails/assets/tinymce/plugins/xhtmlxtras/js/cite.js +28 -0
  614. data/rails/assets/tinymce/plugins/xhtmlxtras/js/del.js +53 -0
  615. data/rails/assets/tinymce/plugins/xhtmlxtras/js/element_common.js +229 -0
  616. data/rails/assets/tinymce/plugins/xhtmlxtras/js/ins.js +53 -0
  617. data/rails/assets/tinymce/plugins/xhtmlxtras/langs/en_dlg.js +1 -0
  618. data/rails/assets/tinymce/themes/advanced/about.htm +52 -0
  619. data/rails/assets/tinymce/themes/advanced/anchor.htm +26 -0
  620. data/rails/assets/tinymce/themes/advanced/charmap.htm +55 -0
  621. data/rails/assets/tinymce/themes/advanced/color_picker.htm +70 -0
  622. data/rails/assets/tinymce/themes/advanced/editor_template.js +1 -0
  623. data/rails/assets/tinymce/themes/advanced/editor_template_src.js +1490 -0
  624. data/rails/assets/tinymce/themes/advanced/image.htm +80 -0
  625. data/rails/assets/tinymce/themes/advanced/img/colorpicker.jpg +0 -0
  626. data/rails/assets/tinymce/themes/advanced/img/flash.gif +0 -0
  627. data/rails/assets/tinymce/themes/advanced/img/icons.gif +0 -0
  628. data/rails/assets/tinymce/themes/advanced/img/iframe.gif +0 -0
  629. data/rails/assets/tinymce/themes/advanced/img/pagebreak.gif +0 -0
  630. data/rails/assets/tinymce/themes/advanced/img/quicktime.gif +0 -0
  631. data/rails/assets/tinymce/themes/advanced/img/realmedia.gif +0 -0
  632. data/rails/assets/tinymce/themes/advanced/img/shockwave.gif +0 -0
  633. data/rails/assets/tinymce/themes/advanced/img/trans.gif +0 -0
  634. data/rails/assets/tinymce/themes/advanced/img/video.gif +0 -0
  635. data/rails/assets/tinymce/themes/advanced/img/windowsmedia.gif +0 -0
  636. data/rails/assets/tinymce/themes/advanced/js/about.js +73 -0
  637. data/rails/assets/tinymce/themes/advanced/js/anchor.js +56 -0
  638. data/rails/assets/tinymce/themes/advanced/js/charmap.js +363 -0
  639. data/rails/assets/tinymce/themes/advanced/js/color_picker.js +345 -0
  640. data/rails/assets/tinymce/themes/advanced/js/image.js +253 -0
  641. data/rails/assets/tinymce/themes/advanced/js/link.js +159 -0
  642. data/rails/assets/tinymce/themes/advanced/js/source_editor.js +78 -0
  643. data/rails/assets/tinymce/themes/advanced/langs/en.js +1 -0
  644. data/rails/assets/tinymce/themes/advanced/langs/en_dlg.js +1 -0
  645. data/rails/assets/tinymce/themes/advanced/link.htm +57 -0
  646. data/rails/assets/tinymce/themes/advanced/shortcuts.htm +47 -0
  647. data/rails/assets/tinymce/themes/advanced/skins/default/content.css +50 -0
  648. data/rails/assets/tinymce/themes/advanced/skins/default/dialog.css +118 -0
  649. data/rails/assets/tinymce/themes/advanced/skins/default/img/buttons.png +0 -0
  650. data/rails/assets/tinymce/themes/advanced/skins/default/img/items.gif +0 -0
  651. data/rails/assets/tinymce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  652. data/rails/assets/tinymce/themes/advanced/skins/default/img/menu_check.gif +0 -0
  653. data/rails/assets/tinymce/themes/advanced/skins/default/img/progress.gif +0 -0
  654. data/rails/assets/tinymce/themes/advanced/skins/default/img/tabs.gif +0 -0
  655. data/rails/assets/tinymce/themes/advanced/skins/default/ui.css +219 -0
  656. data/rails/assets/tinymce/themes/advanced/skins/highcontrast/content.css +24 -0
  657. data/rails/assets/tinymce/themes/advanced/skins/highcontrast/dialog.css +106 -0
  658. data/rails/assets/tinymce/themes/advanced/skins/highcontrast/ui.css +106 -0
  659. data/rails/assets/tinymce/themes/advanced/skins/o2k7/content.css +48 -0
  660. data/rails/assets/tinymce/themes/advanced/skins/o2k7/dialog.css +118 -0
  661. data/rails/assets/tinymce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  662. data/rails/assets/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  663. data/rails/assets/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  664. data/rails/assets/tinymce/themes/advanced/skins/o2k7/ui.css +222 -0
  665. data/rails/assets/tinymce/themes/advanced/skins/o2k7/ui_black.css +8 -0
  666. data/rails/assets/tinymce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  667. data/rails/assets/tinymce/themes/advanced/source_editor.htm +25 -0
  668. data/rails/assets/tinymce/themes/simple/editor_template.js +1 -0
  669. data/rails/assets/tinymce/themes/simple/editor_template_src.js +84 -0
  670. data/rails/assets/tinymce/themes/simple/img/icons.gif +0 -0
  671. data/rails/assets/tinymce/themes/simple/langs/en.js +1 -0
  672. data/rails/assets/tinymce/themes/simple/skins/default/content.css +25 -0
  673. data/rails/assets/tinymce/themes/simple/skins/default/ui.css +32 -0
  674. data/rails/assets/tinymce/themes/simple/skins/o2k7/content.css +17 -0
  675. data/rails/assets/tinymce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  676. data/rails/assets/tinymce/themes/simple/skins/o2k7/ui.css +35 -0
  677. data/rails/assets/tinymce/tiny_mce.js +1 -0
  678. data/rails/assets/tinymce/tiny_mce_jquery.js +1 -0
  679. data/rails/assets/tinymce/tiny_mce_jquery_src.js +17913 -0
  680. data/rails/assets/tinymce/tiny_mce_popup.js +5 -0
  681. data/rails/assets/tinymce/tiny_mce_src.js +19127 -0
  682. data/rails/assets/tinymce/utils/editable_selects.js +70 -0
  683. data/rails/assets/tinymce/utils/form_utils.js +210 -0
  684. data/rails/assets/tinymce/utils/mctabs.js +162 -0
  685. data/rails/assets/tinymce/utils/validate.js +252 -0
  686. data/rails/controllers/card_controller.rb +132 -0
  687. data/rails/engine-routes.rb +50 -0
  688. data/script/autospec +4 -0
  689. data/script/decko +6 -0
  690. data/script/rails +6 -0
  691. data/script/test_filter +25 -0
  692. data/spec/controllers/card_controller_spec.rb +388 -0
  693. data/spec/controllers/location_spec.rb +25 -0
  694. data/spec/javascripts/helpers/.gitkeep +0 -0
  695. data/spec/javascripts/helpers/jasmine-jquery.js +812 -0
  696. data/spec/javascripts/support/jasmine.yml.erb +79 -0
  697. data/spec/javascripts/support/jasmine_config.rb +21 -0
  698. data/spec/javascripts/support/jasmine_runner.rb +21 -0
  699. data/spec/javascripts/wagn_spec.coffee +42 -0
  700. data/test/1.10.0-data-dump.sql +359 -0
  701. data/test/performance/card_create_test.rb +21 -0
  702. data/test/performance/fetch_test.rb +9 -0
  703. data/test/performance/homepage_test.rb +9 -0
  704. data/test/performance/render_test.rb +10 -0
  705. data/test/script/run_engine_deck.sh +47 -0
  706. data/test/script/run_mig.sh +29 -0
  707. data/test/test_helper.rb +125 -0
  708. metadata +784 -29
  709. data/Gemfile +0 -4
  710. data/README.md +0 -29
  711. data/Rakefile +0 -1
  712. data/lib/decko/version.rb +0 -3
@@ -0,0 +1 @@
1
+ (function(c){var b,e,a=[],d=window;c.fn.tinymce=function(j){var p=this,g,k,h,m,i,l="",n="";if(!p.length){return p}if(!j){return tinyMCE.get(p[0].id)}p.css("visibility","hidden");function o(){var r=[],q=0;if(f){f();f=null}p.each(function(t,u){var s,w=u.id,v=j.oninit;if(!w){u.id=w=tinymce.DOM.uniqueId()}s=new tinymce.Editor(w,j);r.push(s);s.onInit.add(function(){var x,y=v;p.css("visibility","");if(v){if(++q==r.length){if(tinymce.is(y,"string")){x=(y.indexOf(".")===-1)?null:tinymce.resolve(y.replace(/\.\w+$/,""));y=tinymce.resolve(y)}y.apply(x||tinymce,r)}}})});c.each(r,function(t,s){s.render()})}if(!d.tinymce&&!e&&(g=j.script_url)){e=1;h=g.substring(0,g.lastIndexOf("/"));if(/_(src|dev)\.js/g.test(g)){n="_src"}m=g.lastIndexOf("?");if(m!=-1){l=g.substring(m+1)}d.tinyMCEPreInit=d.tinyMCEPreInit||{base:h,suffix:n,query:l};if(g.indexOf("gzip")!=-1){i=j.language||"en";g=g+(/\?/.test(g)?"&":"?")+"js=true&core=true&suffix="+escape(n)+"&themes="+escape(j.theme)+"&plugins="+escape(j.plugins)+"&languages="+i;if(!d.tinyMCE_GZ){tinyMCE_GZ={start:function(){tinymce.suffix=n;function q(r){tinymce.ScriptLoader.markDone(tinyMCE.baseURI.toAbsolute(r))}q("langs/"+i+".js");q("themes/"+j.theme+"/editor_template"+n+".js");q("themes/"+j.theme+"/langs/"+i+".js");c.each(j.plugins.split(","),function(s,r){if(r){q("plugins/"+r+"/editor_plugin"+n+".js");q("plugins/"+r+"/langs/"+i+".js")}})},end:function(){}}}}c.ajax({type:"GET",url:g,dataType:"script",cache:true,success:function(){tinymce.dom.Event.domLoaded=1;e=2;if(j.script_loaded){j.script_loaded()}o();c.each(a,function(q,r){r()})}})}else{if(e===1){a.push(o)}else{o()}}return p};c.extend(c.expr[":"],{tinymce:function(g){return !!(g.id&&"tinyMCE" in window&&tinyMCE.get(g.id))}});function f(){function i(l){if(l==="remove"){this.each(function(n,o){var m=h(o);if(m){m.remove()}})}this.find("span.mceEditor,div.mceEditor").each(function(n,o){var m=tinyMCE.get(o.id.replace(/_parent$/,""));if(m){m.remove()}})}function k(n){var m=this,l;if(n!==b){i.call(m);m.each(function(p,q){var o;if(o=tinyMCE.get(q.id)){o.setContent(n)}})}else{if(m.length>0){if(l=tinyMCE.get(m[0].id)){return l.getContent()}}}}function h(m){var l=null;(m)&&(m.id)&&(d.tinymce)&&(l=tinyMCE.get(m.id));return l}function g(l){return !!((l)&&(l.length)&&(d.tinymce)&&(l.is(":tinymce")))}var j={};c.each(["text","html","val"],function(n,l){var o=j[l]=c.fn[l],m=(l==="text");c.fn[l]=function(s){var p=this;if(!g(p)){return o.apply(p,arguments)}if(s!==b){k.call(p.filter(":tinymce"),s);o.apply(p.not(":tinymce"),arguments);return p}else{var r="";var q=arguments;(m?p:p.eq(0)).each(function(u,v){var t=h(v);r+=t?(m?t.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):t.getContent({save:true})):o.apply(c(v),q)});return r}}});c.each(["append","prepend"],function(n,m){var o=j[m]=c.fn[m],l=(m==="prepend");c.fn[m]=function(q){var p=this;if(!g(p)){return o.apply(p,arguments)}if(q!==b){p.filter(":tinymce").each(function(s,t){var r=h(t);r&&r.setContent(l?q+r.getContent():r.getContent()+q)});o.apply(p.not(":tinymce"),arguments);return p}}});c.each(["remove","replaceWith","replaceAll","empty"],function(m,l){var n=j[l]=c.fn[l];c.fn[l]=function(){i.call(this,l);return n.apply(this,arguments)}});j.attr=c.fn.attr;c.fn.attr=function(o,q){var m=this,n=arguments;if((!o)||(o!=="value")||(!g(m))){if(q!==b){return j.attr.apply(m,n)}else{return j.attr.apply(m,n)}}if(q!==b){k.call(m.filter(":tinymce"),q);j.attr.apply(m.not(":tinymce"),n);return m}else{var p=m[0],l=h(p);return l?l.getContent({save:true}):j.attr.apply(c(p),n)}}}})(jQuery);
@@ -0,0 +1 @@
1
+ tinyMCE.addI18n({en:{common:{"more_colors":"More Colors...","invalid_data":"Error: Invalid values entered, these are marked in red.","popup_blocked":"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.","clipboard_no_support":"Currently not supported by your browser, use keyboard shortcuts instead.","clipboard_msg":"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?","not_set":"-- Not Set --","class_name":"Class",browse:"Browse",close:"Close",cancel:"Cancel",update:"Update",insert:"Insert",apply:"Apply","edit_confirm":"Do you want to use the WYSIWYG mode for this textarea?","invalid_data_number":"{#field} must be a number","invalid_data_min":"{#field} must be a number greater than {#min}","invalid_data_size":"{#field} must be a number or percentage",value:"(value)"},contextmenu:{full:"Full",right:"Right",center:"Center",left:"Left",align:"Alignment"},insertdatetime:{"day_short":"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun","day_long":"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","inserttime_desc":"Insert Time","insertdate_desc":"Insert Date","time_fmt":"%H:%M:%S","date_fmt":"%Y-%m-%d"},print:{"print_desc":"Print"},preview:{"preview_desc":"Preview"},directionality:{"rtl_desc":"Direction Right to Left","ltr_desc":"Direction Left to Right"},layer:{content:"New layer...","absolute_desc":"Toggle Absolute Positioning","backward_desc":"Move Backward","forward_desc":"Move Forward","insertlayer_desc":"Insert New Layer"},save:{"save_desc":"Save","cancel_desc":"Cancel All Changes"},nonbreaking:{"nonbreaking_desc":"Insert Non-Breaking Space Character"},iespell:{download:"ieSpell not detected. Do you want to install it now?","iespell_desc":"Check Spelling"},advhr:{"delta_height":"","delta_width":"","advhr_desc":"Insert Horizontal Line"},emotions:{"delta_height":"","delta_width":"","emotions_desc":"Emotions"},searchreplace:{"replace_desc":"Find/Replace","delta_width":"","delta_height":"","search_desc":"Find"},advimage:{"delta_width":"","image_desc":"Insert/Edit Image","delta_height":""},advlink:{"delta_height":"","delta_width":"","link_desc":"Insert/Edit Link"},xhtmlxtras:{"attribs_delta_height":"","attribs_delta_width":"","ins_delta_height":"","ins_delta_width":"","del_delta_height":"","del_delta_width":"","acronym_delta_height":"","acronym_delta_width":"","abbr_delta_height":"","abbr_delta_width":"","cite_delta_height":"","cite_delta_width":"","attribs_desc":"Insert/Edit Attributes","ins_desc":"Insertion","del_desc":"Deletion","acronym_desc":"Acronym","abbr_desc":"Abbreviation","cite_desc":"Citation"},style:{"delta_height":"","delta_width":"",desc:"Edit CSS Style"},paste:{"plaintext_mode_stick":"Paste is now in plain text mode. Click again to toggle back to regular paste mode.","plaintext_mode":"Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode.","selectall_desc":"Select All","paste_word_desc":"Paste from Word","paste_text_desc":"Paste as Plain Text"},"paste_dlg":{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."},table:{"merge_cells_delta_height":"","merge_cells_delta_width":"","table_delta_height":"","table_delta_width":"","cellprops_delta_height":"","cellprops_delta_width":"","rowprops_delta_height":"","rowprops_delta_width":"",cell:"Cell",col:"Column",row:"Row",del:"Delete Table","copy_row_desc":"Copy Table Row","cut_row_desc":"Cut Table Row","paste_row_after_desc":"Paste Table Row After","paste_row_before_desc":"Paste Table Row Before","props_desc":"Table Properties","cell_desc":"Table Cell Properties","row_desc":"Table Row Properties","merge_cells_desc":"Merge Table Cells","split_cells_desc":"Split Merged Table Cells","delete_col_desc":"Delete Column","col_after_desc":"Insert Column After","col_before_desc":"Insert Column Before","delete_row_desc":"Delete Row","row_after_desc":"Insert Row After","row_before_desc":"Insert Row Before",desc:"Insert/Edit Table"},autosave:{"warning_message":"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?","restore_content":"Restore auto-saved content.","unload_msg":"The changes you made will be lost if you navigate away from this page."},fullscreen:{desc:"Toggle Full Screen Mode"},media:{"delta_height":"","delta_width":"",edit:"Edit Embedded Media",desc:"Insert/Edit Embedded Media"},fullpage:{desc:"Document Properties","delta_width":"","delta_height":""},template:{desc:"Insert Predefined Template Content"},visualchars:{desc:"Show/Hide Visual Control Characters"},spellchecker:{desc:"Toggle Spell Checker",menu:"Spell Checker Settings","ignore_word":"Ignore Word","ignore_words":"Ignore All",langs:"Languages",wait:"Please wait...",sug:"Suggestions","no_sug":"No Suggestions","no_mpell":"No misspellings found.","learn_word":"Learn word"},pagebreak:{desc:"Insert Page Break for Printing"},advlist:{types:"Types",def:"Default","lower_alpha":"Lower Alpha","lower_greek":"Lower Greek","lower_roman":"Lower Roman","upper_alpha":"Upper Alpha","upper_roman":"Upper Roman",circle:"Circle",disc:"Disc",square:"Square"},colors:{"333300":"Dark olive","993300":"Burnt orange","000000":"Black","003300":"Dark green","003366":"Dark azure","000080":"Navy Blue","333399":"Indigo","333333":"Very dark gray","800000":"Maroon",FF6600:"Orange","808000":"Olive","008000":"Green","008080":"Teal","0000FF":"Blue","666699":"Grayish blue","808080":"Gray",FF0000:"Red",FF9900:"Amber","99CC00":"Yellow green","339966":"Sea green","33CCCC":"Turquoise","3366FF":"Royal blue","800080":"Purple","999999":"Medium gray",FF00FF:"Magenta",FFCC00:"Gold",FFFF00:"Yellow","00FF00":"Lime","00FFFF":"Aqua","00CCFF":"Sky blue","993366":"Brown",C0C0C0:"Silver",FF99CC:"Pink",FFCC99:"Peach",FFFF99:"Light yellow",CCFFCC:"Pale green",CCFFFF:"Pale cyan","99CCFF":"Light sky blue",CC99FF:"Plum",FFFFFF:"White"},aria:{"rich_text_area":"Rich Text Area"},wordcount:{words:"Words:"},visualblocks:{desc:'Show/hide block elements'}}});
@@ -0,0 +1,504 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 2.1, February 1999
3
+
4
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
5
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ [This is the first released version of the Lesser GPL. It also counts
10
+ as the successor of the GNU Library Public License, version 2, hence
11
+ the version number 2.1.]
12
+
13
+ Preamble
14
+
15
+ The licenses for most software are designed to take away your
16
+ freedom to share and change it. By contrast, the GNU General Public
17
+ Licenses are intended to guarantee your freedom to share and change
18
+ free software--to make sure the software is free for all its users.
19
+
20
+ This license, the Lesser General Public License, applies to some
21
+ specially designated software packages--typically libraries--of the
22
+ Free Software Foundation and other authors who decide to use it. You
23
+ can use it too, but we suggest you first think carefuly about whether
24
+ this license or the ordinary General Public License is the better
25
+ strategy to use in any particular case, based on the explanations below.
26
+
27
+ When we speak of free software, we are referring to freedom of use,
28
+ not price. Our General Public Licenses are designed to make sure that
29
+ you have the freedom to distribute copies of free software (and charge
30
+ for this service if you wish); that you receive source code or can get
31
+ it if you want it; that you can change the software and use pieces of
32
+ it in new free programs; and that you are informed that you can do
33
+ these things.
34
+
35
+ To protect your rights, we need to make restrictions that forbid
36
+ distributors to deny you these rights or to ask you to surrender these
37
+ rights. These restrictions translate to certain responsibilities for
38
+ you if you distribute copies of the library or if you modify it.
39
+
40
+ For example, if you distribute copies of the library, whether gratis
41
+ or for a fee, you must give the recipients all the rights that we gave
42
+ you. You must make sure that they, too, receive or can get the source
43
+ code. If you link other code with the library, you must provide
44
+ complete object files to the recipients, so that they can relink them
45
+ with the library after making changes to the library and recompiling
46
+ it. And you must show them these terms so they know their rights.
47
+
48
+ We protect your rights with a two-step method: (1) we copyright the
49
+ library, and (2) we offer you this license, which gives you legal
50
+ permission to copy, distribute and/or modify the library.
51
+
52
+ To protect each distributor, we want to make it very clear that
53
+ there is no warranty for the free library. Also, if the library is
54
+ modified by someone else and passed on, the recipients should know
55
+ that what they have is not the original version, so that the original
56
+ author's reputation will not be affected by problems that might be
57
+ introduced by others.
58
+
59
+ Finally, software patents pose a constant threat to the existence of
60
+ any free program. We wish to make sure that a company cannot
61
+ effectively restrict the users of a free program by obtaining a
62
+ restrictive license from a patent holder. Therefore, we insist that
63
+ any patent license obtained for a version of the library must be
64
+ consistent with the full freedom of use specified in this license.
65
+
66
+ Most GNU software, including some libraries, is covered by the
67
+ ordinary GNU General Public License. This license, the GNU Lesser
68
+ General Public License, applies to certain designated libraries, and
69
+ is quite different from the ordinary General Public License. We use
70
+ this license for certain libraries in order to permit linking those
71
+ libraries into non-free programs.
72
+
73
+ When a program is linked with a library, whether statically or using
74
+ a shared library, the combination of the two is legally speaking a
75
+ combined work, a derivative of the original library. The ordinary
76
+ General Public License therefore permits such linking only if the
77
+ entire combination fits its criteria of freedom. The Lesser General
78
+ Public License permits more lax criteria for linking other code with
79
+ the library.
80
+
81
+ We call this license the "Lesser" General Public License because it
82
+ does Less to protect the user's freedom than the ordinary General
83
+ Public License. It also provides other free software developers Less
84
+ of an advantage over competing non-free programs. These disadvantages
85
+ are the reason we use the ordinary General Public License for many
86
+ libraries. However, the Lesser license provides advantages in certain
87
+ special circumstances.
88
+
89
+ For example, on rare occasions, there may be a special need to
90
+ encourage the widest possible use of a certain library, so that it becomes
91
+ a de-facto standard. To achieve this, non-free programs must be
92
+ allowed to use the library. A more frequent case is that a free
93
+ library does the same job as widely used non-free libraries. In this
94
+ case, there is little to gain by limiting the free library to free
95
+ software only, so we use the Lesser General Public License.
96
+
97
+ In other cases, permission to use a particular library in non-free
98
+ programs enables a greater number of people to use a large body of
99
+ free software. For example, permission to use the GNU C Library in
100
+ non-free programs enables many more people to use the whole GNU
101
+ operating system, as well as its variant, the GNU/Linux operating
102
+ system.
103
+
104
+ Although the Lesser General Public License is Less protective of the
105
+ users' freedom, it does ensure that the user of a program that is
106
+ linked with the Library has the freedom and the wherewithal to run
107
+ that program using a modified version of the Library.
108
+
109
+ The precise terms and conditions for copying, distribution and
110
+ modification follow. Pay close attention to the difference between a
111
+ "work based on the library" and a "work that uses the library". The
112
+ former contains code derived from the library, whereas the latter must
113
+ be combined with the library in order to run.
114
+
115
+ GNU LESSER GENERAL PUBLIC LICENSE
116
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
117
+
118
+ 0. This License Agreement applies to any software library or other
119
+ program which contains a notice placed by the copyright holder or
120
+ other authorized party saying it may be distributed under the terms of
121
+ this Lesser General Public License (also called "this License").
122
+ Each licensee is addressed as "you".
123
+
124
+ A "library" means a collection of software functions and/or data
125
+ prepared so as to be conveniently linked with application programs
126
+ (which use some of those functions and data) to form executables.
127
+
128
+ The "Library", below, refers to any such software library or work
129
+ which has been distributed under these terms. A "work based on the
130
+ Library" means either the Library or any derivative work under
131
+ copyright law: that is to say, a work containing the Library or a
132
+ portion of it, either verbatim or with modifications and/or translated
133
+ straightforwardly into another language. (Hereinafter, translation is
134
+ included without limitation in the term "modification".)
135
+
136
+ "Source code" for a work means the preferred form of the work for
137
+ making modifications to it. For a library, complete source code means
138
+ all the source code for all modules it contains, plus any associated
139
+ interface definition files, plus the scripts used to control compilation
140
+ and installation of the library.
141
+
142
+ Activities other than copying, distribution and modification are not
143
+ covered by this License; they are outside its scope. The act of
144
+ running a program using the Library is not restricted, and output from
145
+ such a program is covered only if its contents constitute a work based
146
+ on the Library (independent of the use of the Library in a tool for
147
+ writing it). Whether that is true depends on what the Library does
148
+ and what the program that uses the Library does.
149
+
150
+ 1. You may copy and distribute verbatim copies of the Library's
151
+ complete source code as you receive it, in any medium, provided that
152
+ you conspicuously and appropriately publish on each copy an
153
+ appropriate copyright notice and disclaimer of warranty; keep intact
154
+ all the notices that refer to this License and to the absence of any
155
+ warranty; and distribute a copy of this License along with the
156
+ Library.
157
+
158
+ You may charge a fee for the physical act of transferring a copy,
159
+ and you may at your option offer warranty protection in exchange for a
160
+ fee.
161
+
162
+ 2. You may modify your copy or copies of the Library or any portion
163
+ of it, thus forming a work based on the Library, and copy and
164
+ distribute such modifications or work under the terms of Section 1
165
+ above, provided that you also meet all of these conditions:
166
+
167
+ a) The modified work must itself be a software library.
168
+
169
+ b) You must cause the files modified to carry prominent notices
170
+ stating that you changed the files and the date of any change.
171
+
172
+ c) You must cause the whole of the work to be licensed at no
173
+ charge to all third parties under the terms of this License.
174
+
175
+ d) If a facility in the modified Library refers to a function or a
176
+ table of data to be supplied by an application program that uses
177
+ the facility, other than as an argument passed when the facility
178
+ is invoked, then you must make a good faith effort to ensure that,
179
+ in the event an application does not supply such function or
180
+ table, the facility still operates, and performs whatever part of
181
+ its purpose remains meaningful.
182
+
183
+ (For example, a function in a library to compute square roots has
184
+ a purpose that is entirely well-defined independent of the
185
+ application. Therefore, Subsection 2d requires that any
186
+ application-supplied function or table used by this function must
187
+ be optional: if the application does not supply it, the square
188
+ root function must still compute square roots.)
189
+
190
+ These requirements apply to the modified work as a whole. If
191
+ identifiable sections of that work are not derived from the Library,
192
+ and can be reasonably considered independent and separate works in
193
+ themselves, then this License, and its terms, do not apply to those
194
+ sections when you distribute them as separate works. But when you
195
+ distribute the same sections as part of a whole which is a work based
196
+ on the Library, the distribution of the whole must be on the terms of
197
+ this License, whose permissions for other licensees extend to the
198
+ entire whole, and thus to each and every part regardless of who wrote
199
+ it.
200
+
201
+ Thus, it is not the intent of this section to claim rights or contest
202
+ your rights to work written entirely by you; rather, the intent is to
203
+ exercise the right to control the distribution of derivative or
204
+ collective works based on the Library.
205
+
206
+ In addition, mere aggregation of another work not based on the Library
207
+ with the Library (or with a work based on the Library) on a volume of
208
+ a storage or distribution medium does not bring the other work under
209
+ the scope of this License.
210
+
211
+ 3. You may opt to apply the terms of the ordinary GNU General Public
212
+ License instead of this License to a given copy of the Library. To do
213
+ this, you must alter all the notices that refer to this License, so
214
+ that they refer to the ordinary GNU General Public License, version 2,
215
+ instead of to this License. (If a newer version than version 2 of the
216
+ ordinary GNU General Public License has appeared, then you can specify
217
+ that version instead if you wish.) Do not make any other change in
218
+ these notices.
219
+
220
+ Once this change is made in a given copy, it is irreversible for
221
+ that copy, so the ordinary GNU General Public License applies to all
222
+ subsequent copies and derivative works made from that copy.
223
+
224
+ This option is useful when you wish to copy part of the code of
225
+ the Library into a program that is not a library.
226
+
227
+ 4. You may copy and distribute the Library (or a portion or
228
+ derivative of it, under Section 2) in object code or executable form
229
+ under the terms of Sections 1 and 2 above provided that you accompany
230
+ it with the complete corresponding machine-readable source code, which
231
+ must be distributed under the terms of Sections 1 and 2 above on a
232
+ medium customarily used for software interchange.
233
+
234
+ If distribution of object code is made by offering access to copy
235
+ from a designated place, then offering equivalent access to copy the
236
+ source code from the same place satisfies the requirement to
237
+ distribute the source code, even though third parties are not
238
+ compelled to copy the source along with the object code.
239
+
240
+ 5. A program that contains no derivative of any portion of the
241
+ Library, but is designed to work with the Library by being compiled or
242
+ linked with it, is called a "work that uses the Library". Such a
243
+ work, in isolation, is not a derivative work of the Library, and
244
+ therefore falls outside the scope of this License.
245
+
246
+ However, linking a "work that uses the Library" with the Library
247
+ creates an executable that is a derivative of the Library (because it
248
+ contains portions of the Library), rather than a "work that uses the
249
+ library". The executable is therefore covered by this License.
250
+ Section 6 states terms for distribution of such executables.
251
+
252
+ When a "work that uses the Library" uses material from a header file
253
+ that is part of the Library, the object code for the work may be a
254
+ derivative work of the Library even though the source code is not.
255
+ Whether this is true is especially significant if the work can be
256
+ linked without the Library, or if the work is itself a library. The
257
+ threshold for this to be true is not precisely defined by law.
258
+
259
+ If such an object file uses only numerical parameters, data
260
+ structure layouts and accessors, and small macros and small inline
261
+ functions (ten lines or less in length), then the use of the object
262
+ file is unrestricted, regardless of whether it is legally a derivative
263
+ work. (Executables containing this object code plus portions of the
264
+ Library will still fall under Section 6.)
265
+
266
+ Otherwise, if the work is a derivative of the Library, you may
267
+ distribute the object code for the work under the terms of Section 6.
268
+ Any executables containing that work also fall under Section 6,
269
+ whether or not they are linked directly with the Library itself.
270
+
271
+ 6. As an exception to the Sections above, you may also combine or
272
+ link a "work that uses the Library" with the Library to produce a
273
+ work containing portions of the Library, and distribute that work
274
+ under terms of your choice, provided that the terms permit
275
+ modification of the work for the customer's own use and reverse
276
+ engineering for debugging such modifications.
277
+
278
+ You must give prominent notice with each copy of the work that the
279
+ Library is used in it and that the Library and its use are covered by
280
+ this License. You must supply a copy of this License. If the work
281
+ during execution displays copyright notices, you must include the
282
+ copyright notice for the Library among them, as well as a reference
283
+ directing the user to the copy of this License. Also, you must do one
284
+ of these things:
285
+
286
+ a) Accompany the work with the complete corresponding
287
+ machine-readable source code for the Library including whatever
288
+ changes were used in the work (which must be distributed under
289
+ Sections 1 and 2 above); and, if the work is an executable linked
290
+ with the Library, with the complete machine-readable "work that
291
+ uses the Library", as object code and/or source code, so that the
292
+ user can modify the Library and then relink to produce a modified
293
+ executable containing the modified Library. (It is understood
294
+ that the user who changes the contents of definitions files in the
295
+ Library will not necessarily be able to recompile the application
296
+ to use the modified definitions.)
297
+
298
+ b) Use a suitable shared library mechanism for linking with the
299
+ Library. A suitable mechanism is one that (1) uses at run time a
300
+ copy of the library already present on the user's computer system,
301
+ rather than copying library functions into the executable, and (2)
302
+ will operate properly with a modified version of the library, if
303
+ the user installs one, as long as the modified version is
304
+ interface-compatible with the version that the work was made with.
305
+
306
+ c) Accompany the work with a written offer, valid for at
307
+ least three years, to give the same user the materials
308
+ specified in Subsection 6a, above, for a charge no more
309
+ than the cost of performing this distribution.
310
+
311
+ d) If distribution of the work is made by offering access to copy
312
+ from a designated place, offer equivalent access to copy the above
313
+ specified materials from the same place.
314
+
315
+ e) Verify that the user has already received a copy of these
316
+ materials or that you have already sent this user a copy.
317
+
318
+ For an executable, the required form of the "work that uses the
319
+ Library" must include any data and utility programs needed for
320
+ reproducing the executable from it. However, as a special exception,
321
+ the materials to be distributed need not include anything that is
322
+ normally distributed (in either source or binary form) with the major
323
+ components (compiler, kernel, and so on) of the operating system on
324
+ which the executable runs, unless that component itself accompanies
325
+ the executable.
326
+
327
+ It may happen that this requirement contradicts the license
328
+ restrictions of other proprietary libraries that do not normally
329
+ accompany the operating system. Such a contradiction means you cannot
330
+ use both them and the Library together in an executable that you
331
+ distribute.
332
+
333
+ 7. You may place library facilities that are a work based on the
334
+ Library side-by-side in a single library together with other library
335
+ facilities not covered by this License, and distribute such a combined
336
+ library, provided that the separate distribution of the work based on
337
+ the Library and of the other library facilities is otherwise
338
+ permitted, and provided that you do these two things:
339
+
340
+ a) Accompany the combined library with a copy of the same work
341
+ based on the Library, uncombined with any other library
342
+ facilities. This must be distributed under the terms of the
343
+ Sections above.
344
+
345
+ b) Give prominent notice with the combined library of the fact
346
+ that part of it is a work based on the Library, and explaining
347
+ where to find the accompanying uncombined form of the same work.
348
+
349
+ 8. You may not copy, modify, sublicense, link with, or distribute
350
+ the Library except as expressly provided under this License. Any
351
+ attempt otherwise to copy, modify, sublicense, link with, or
352
+ distribute the Library is void, and will automatically terminate your
353
+ rights under this License. However, parties who have received copies,
354
+ or rights, from you under this License will not have their licenses
355
+ terminated so long as such parties remain in full compliance.
356
+
357
+ 9. You are not required to accept this License, since you have not
358
+ signed it. However, nothing else grants you permission to modify or
359
+ distribute the Library or its derivative works. These actions are
360
+ prohibited by law if you do not accept this License. Therefore, by
361
+ modifying or distributing the Library (or any work based on the
362
+ Library), you indicate your acceptance of this License to do so, and
363
+ all its terms and conditions for copying, distributing or modifying
364
+ the Library or works based on it.
365
+
366
+ 10. Each time you redistribute the Library (or any work based on the
367
+ Library), the recipient automatically receives a license from the
368
+ original licensor to copy, distribute, link with or modify the Library
369
+ subject to these terms and conditions. You may not impose any further
370
+ restrictions on the recipients' exercise of the rights granted herein.
371
+ You are not responsible for enforcing compliance by third parties with
372
+ this License.
373
+
374
+ 11. If, as a consequence of a court judgment or allegation of patent
375
+ infringement or for any other reason (not limited to patent issues),
376
+ conditions are imposed on you (whether by court order, agreement or
377
+ otherwise) that contradict the conditions of this License, they do not
378
+ excuse you from the conditions of this License. If you cannot
379
+ distribute so as to satisfy simultaneously your obligations under this
380
+ License and any other pertinent obligations, then as a consequence you
381
+ may not distribute the Library at all. For example, if a patent
382
+ license would not permit royalty-free redistribution of the Library by
383
+ all those who receive copies directly or indirectly through you, then
384
+ the only way you could satisfy both it and this License would be to
385
+ refrain entirely from distribution of the Library.
386
+
387
+ If any portion of this section is held invalid or unenforceable under any
388
+ particular circumstance, the balance of the section is intended to apply,
389
+ and the section as a whole is intended to apply in other circumstances.
390
+
391
+ It is not the purpose of this section to induce you to infringe any
392
+ patents or other property right claims or to contest validity of any
393
+ such claims; this section has the sole purpose of protecting the
394
+ integrity of the free software distribution system which is
395
+ implemented by public license practices. Many people have made
396
+ generous contributions to the wide range of software distributed
397
+ through that system in reliance on consistent application of that
398
+ system; it is up to the author/donor to decide if he or she is willing
399
+ to distribute software through any other system and a licensee cannot
400
+ impose that choice.
401
+
402
+ This section is intended to make thoroughly clear what is believed to
403
+ be a consequence of the rest of this License.
404
+
405
+ 12. If the distribution and/or use of the Library is restricted in
406
+ certain countries either by patents or by copyrighted interfaces, the
407
+ original copyright holder who places the Library under this License may add
408
+ an explicit geographical distribution limitation excluding those countries,
409
+ so that distribution is permitted only in or among countries not thus
410
+ excluded. In such case, this License incorporates the limitation as if
411
+ written in the body of this License.
412
+
413
+ 13. The Free Software Foundation may publish revised and/or new
414
+ versions of the Lesser General Public License from time to time.
415
+ Such new versions will be similar in spirit to the present version,
416
+ but may differ in detail to address new problems or concerns.
417
+
418
+ Each version is given a distinguishing version number. If the Library
419
+ specifies a version number of this License which applies to it and
420
+ "any later version", you have the option of following the terms and
421
+ conditions either of that version or of any later version published by
422
+ the Free Software Foundation. If the Library does not specify a
423
+ license version number, you may choose any version ever published by
424
+ the Free Software Foundation.
425
+
426
+ 14. If you wish to incorporate parts of the Library into other free
427
+ programs whose distribution conditions are incompatible with these,
428
+ write to the author to ask for permission. For software which is
429
+ copyrighted by the Free Software Foundation, write to the Free
430
+ Software Foundation; we sometimes make exceptions for this. Our
431
+ decision will be guided by the two goals of preserving the free status
432
+ of all derivatives of our free software and of promoting the sharing
433
+ and reuse of software generally.
434
+
435
+ NO WARRANTY
436
+
437
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
438
+ WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
439
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
440
+ OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
441
+ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
442
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
443
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
444
+ LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
445
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
446
+
447
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
448
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
449
+ AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
450
+ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
451
+ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
452
+ LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
453
+ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
454
+ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
455
+ SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
456
+ DAMAGES.
457
+
458
+ END OF TERMS AND CONDITIONS
459
+
460
+ How to Apply These Terms to Your New Libraries
461
+
462
+ If you develop a new library, and you want it to be of the greatest
463
+ possible use to the public, we recommend making it free software that
464
+ everyone can redistribute and change. You can do so by permitting
465
+ redistribution under these terms (or, alternatively, under the terms of the
466
+ ordinary General Public License).
467
+
468
+ To apply these terms, attach the following notices to the library. It is
469
+ safest to attach them to the start of each source file to most effectively
470
+ convey the exclusion of warranty; and each file should have at least the
471
+ "copyright" line and a pointer to where the full notice is found.
472
+
473
+ <one line to give the library's name and a brief idea of what it does.>
474
+ Copyright (C) <year> <name of author>
475
+
476
+ This library is free software; you can redistribute it and/or
477
+ modify it under the terms of the GNU Lesser General Public
478
+ License as published by the Free Software Foundation; either
479
+ version 2.1 of the License, or (at your option) any later version.
480
+
481
+ This library is distributed in the hope that it will be useful,
482
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
483
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
484
+ Lesser General Public License for more details.
485
+
486
+ You should have received a copy of the GNU Lesser General Public
487
+ License along with this library; if not, write to the Free Software
488
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
489
+
490
+ Also add information on how to contact you by electronic and paper mail.
491
+
492
+ You should also get your employer (if you work as a programmer) or your
493
+ school, if any, to sign a "copyright disclaimer" for the library, if
494
+ necessary. Here is a sample; alter the names:
495
+
496
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
497
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
498
+
499
+ <signature of Ty Coon>, 1 April 1990
500
+ Ty Coon, President of Vice
501
+
502
+ That's all there is to it!
503
+
504
+