erp_app 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (909) hide show
  1. data/README.md +3 -0
  2. data/app/controllers/erp_app/application_controller.rb +1 -0
  3. data/app/controllers/erp_app/desktop/base_controller.rb +1 -1
  4. data/app/controllers/erp_app/desktop/configuration_management/base_controller.rb +180 -0
  5. data/app/controllers/erp_app/desktop/configuration_management/options_controller.rb +55 -0
  6. data/app/controllers/erp_app/desktop/configuration_management/types_controller.rb +129 -0
  7. data/app/controllers/erp_app/desktop/control_panel/application_management_controller.rb +1 -1
  8. data/app/controllers/erp_app/desktop/control_panel/desktop_management_controller.rb +1 -1
  9. data/app/controllers/erp_app/desktop/control_panel/profile_management_controller.rb +14 -16
  10. data/app/controllers/erp_app/desktop/file_manager/base_controller.rb +5 -7
  11. data/app/controllers/erp_app/desktop/system_management/application_role_management_controller.rb +1 -1
  12. data/app/controllers/erp_app/desktop/user_management/application_management_controller.rb +9 -9
  13. data/app/controllers/erp_app/desktop/user_management/base_controller.rb +1 -1
  14. data/app/controllers/erp_app/desktop/user_management/role_management_controller.rb +13 -8
  15. data/app/controllers/erp_app/mobile/base_controller.rb +21 -0
  16. data/app/controllers/erp_app/mobile/login_controller.rb +11 -0
  17. data/app/controllers/erp_app/mobile/user_management/base_controller.rb +24 -0
  18. data/app/controllers/erp_app/organizer/base_controller.rb +6 -5
  19. data/app/controllers/erp_app/organizer/crm/base_controller.rb +117 -15
  20. data/app/controllers/erp_app/public_controller.rb +73 -6
  21. data/app/controllers/erp_app/shared/configuration_controller.rb +53 -0
  22. data/app/controllers/erp_app/widget_proxy_controller.rb +1 -1
  23. data/app/models/app_container.rb +8 -2
  24. data/app/models/application.rb +1 -1
  25. data/app/models/configuration.rb +129 -0
  26. data/app/models/configuration_item.rb +45 -0
  27. data/app/models/configuration_item_type.rb +96 -0
  28. data/app/models/configuration_item_type_configuration_option.rb +10 -0
  29. data/app/models/configuration_option.rb +20 -0
  30. data/app/models/desktop.rb +7 -10
  31. data/app/models/extensions/user.rb +41 -2
  32. data/app/models/mobile.rb +10 -0
  33. data/app/models/mobile_application.rb +6 -0
  34. data/app/models/organizer.rb +3 -6
  35. data/app/models/preference.rb +2 -2
  36. data/app/models/preference_type.rb +1 -1
  37. data/app/models/user_preference.rb +3 -3
  38. data/app/models/valid_configuration.rb +4 -0
  39. data/app/models/valid_preference_type.rb +2 -2
  40. data/app/observers/user_app_container_observer.rb +7 -2
  41. data/app/views/erp_app/desktop/base/index.erb +25 -32
  42. data/app/views/erp_app/login/index.erb +3 -3
  43. data/app/views/erp_app/mobile/base/index.erb +37 -0
  44. data/app/views/erp_app/mobile/login/index.erb +22 -0
  45. data/app/views/erp_app/mobile/user_management/base/index.html.erb +28 -0
  46. data/app/views/erp_app/organizer/base/get_party_details.erb +19 -0
  47. data/app/views/erp_app/organizer/base/index.erb +20 -23
  48. data/app/views/erp_app/widget_proxy/index.erb +1 -1
  49. data/config/routes.rb +22 -0
  50. data/db/data_migrations/20110728201729_erp_app_setup.rb +3 -1
  51. data/db/data_migrations/20120229160222_add_userinfo_widget.rb +30 -0
  52. data/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.rb +10 -0
  53. data/db/data_migrations/20120411180756_create_user_management_mobile_application.rb +18 -0
  54. data/db/data_migrations/20120413000515_create_mobile_containers.rb +13 -0
  55. data/db/data_migrations/20120418164215_create_configuration_management_desktop_application.rb +22 -0
  56. data/db/data_migrations/upgrade/20120213182651_add_true_north_background.rb +16 -0
  57. data/db/migrate/20080805000096_base_app_framework.rb +125 -33
  58. data/db/migrate/20120316152543_add_is_template_to_configurations.rb +5 -0
  59. data/db/migrate/20120320182253_update_app_container.rb +20 -0
  60. data/db/migrate/20120325123722_remove_file_system_loader_column.rb +9 -0
  61. data/db/migrate/20120411151848_add_base_url_to_application.rb +5 -0
  62. data/db/migrate/20120427000446_add_user_defined_to_config_option.rb +17 -0
  63. data/db/migrate/20120429130430_update_configuration_join_tables.rb +16 -0
  64. data/db/migrate/upgrade/20120208201934_add_configuration_models.rb +109 -0
  65. data/db/migrate/upgrade/20120209194251_add_user_defined_to_config_type.rb +5 -0
  66. data/db/migrate/upgrade/20120210172929_add_config_types_to_configs.rb +23 -0
  67. data/lib/erp_app/application_resource_loader/base_loader.rb +17 -0
  68. data/lib/erp_app/application_resource_loader/{file_system_loader.rb → desktop_organizer_loader.rb} +15 -29
  69. data/lib/erp_app/application_resource_loader/mobile_loader.rb +46 -0
  70. data/lib/erp_app/application_resource_loader/shared_loader.rb +26 -0
  71. data/lib/erp_app/application_resource_loader.rb +4 -0
  72. data/lib/erp_app/config.rb +2 -2
  73. data/lib/erp_app/engine.rb +7 -4
  74. data/lib/erp_app/extensions/railties/action_view/base.rb +12 -0
  75. data/lib/erp_app/extensions/railties/action_view/helpers/active_ext_helper.rb +17 -0
  76. data/lib/erp_app/extensions/railties/action_view/helpers/extjs_helper.rb +45 -0
  77. data/lib/erp_app/extensions/railties/action_view/helpers/include_helper.rb +134 -0
  78. data/lib/erp_app/extensions/railties/action_view/helpers/tag_helper.rb +27 -0
  79. data/lib/erp_app/extensions.rb +1 -2
  80. data/lib/erp_app/version.rb +8 -1
  81. data/lib/erp_app/widgets/base.rb +50 -43
  82. data/lib/erp_app/widgets/javascript_loader.rb +13 -20
  83. data/lib/erp_app/widgets/loader.rb +126 -0
  84. data/lib/erp_app/widgets/railties/action_view/base.rb +8 -0
  85. data/lib/erp_app/widgets/railties/action_view/helpers/widget_helper.rb +57 -0
  86. data/lib/erp_app/widgets.rb +2 -2
  87. data/lib/erp_app.rb +3 -1
  88. data/lib/generators/cms_widget/templates/engine/engine_template.rb +0 -4
  89. data/lib/generators/cms_widget/templates/javascript/base.js.erb +2 -1
  90. data/lib/generators/desktop_application/USAGE +1 -1
  91. data/lib/generators/desktop_application/templates/controllers/controller_template.rb +7 -5
  92. data/lib/generators/desktop_application/templates/migrate/migration_template.rb +0 -4
  93. data/lib/generators/mobile_application/USAGE +24 -0
  94. data/lib/generators/mobile_application/mobile_application_generator.rb +27 -0
  95. data/lib/generators/mobile_application/templates/INSTALL +25 -0
  96. data/lib/generators/mobile_application/templates/controllers/controller_template.rb +11 -0
  97. data/lib/generators/mobile_application/templates/migrate/migration_template.rb +14 -0
  98. data/lib/generators/mobile_application/templates/public/app.js.erb +35 -0
  99. data/lib/generators/mobile_application/templates/views/index.html.erb +28 -0
  100. data/lib/generators/organizer_application/templates/controllers/controller_template.rb +9 -11
  101. data/public/images/icons/apartment/apartment_16x16.png +0 -0
  102. data/public/images/icons/apartment/apartment_24x24.png +0 -0
  103. data/public/images/icons/apartment/apartment_32x32.png +0 -0
  104. data/public/images/icons/apartment/apartment_48x48.png +0 -0
  105. data/public/images/wallpaper/truenorth.png +0 -0
  106. data/public/javascripts/erp_app/authentication/widget_manager.js +23 -2
  107. data/public/javascripts/erp_app/ckeditor/ckeditor.js +113 -111
  108. data/public/javascripts/erp_app/ckeditor/contents.css +2 -2
  109. data/public/javascripts/erp_app/ckeditor/lang/_translationstatus.txt +59 -59
  110. data/public/javascripts/erp_app/ckeditor/lang/af.js +1 -1
  111. data/public/javascripts/erp_app/ckeditor/lang/ar.js +1 -1
  112. data/public/javascripts/erp_app/ckeditor/lang/bg.js +1 -1
  113. data/public/javascripts/erp_app/ckeditor/lang/bn.js +1 -1
  114. data/public/javascripts/erp_app/ckeditor/lang/bs.js +1 -1
  115. data/public/javascripts/erp_app/ckeditor/lang/ca.js +1 -1
  116. data/public/javascripts/erp_app/ckeditor/lang/cs.js +1 -1
  117. data/public/javascripts/erp_app/ckeditor/lang/cy.js +1 -1
  118. data/public/javascripts/erp_app/ckeditor/lang/da.js +1 -1
  119. data/public/javascripts/erp_app/ckeditor/lang/de.js +1 -1
  120. data/public/javascripts/erp_app/ckeditor/lang/el.js +1 -1
  121. data/public/javascripts/erp_app/ckeditor/lang/en-au.js +1 -1
  122. data/public/javascripts/erp_app/ckeditor/lang/en-ca.js +1 -1
  123. data/public/javascripts/erp_app/ckeditor/lang/en-gb.js +1 -1
  124. data/public/javascripts/erp_app/ckeditor/lang/en.js +1 -1
  125. data/public/javascripts/erp_app/ckeditor/lang/eo.js +1 -1
  126. data/public/javascripts/erp_app/ckeditor/lang/es.js +1 -1
  127. data/public/javascripts/erp_app/ckeditor/lang/et.js +1 -1
  128. data/public/javascripts/erp_app/ckeditor/lang/eu.js +1 -1
  129. data/public/javascripts/erp_app/ckeditor/lang/fa.js +1 -1
  130. data/public/javascripts/erp_app/ckeditor/lang/fi.js +1 -1
  131. data/public/javascripts/erp_app/ckeditor/lang/fo.js +1 -1
  132. data/public/javascripts/erp_app/ckeditor/lang/fr-ca.js +1 -1
  133. data/public/javascripts/erp_app/ckeditor/lang/fr.js +1 -1
  134. data/public/javascripts/erp_app/ckeditor/lang/gl.js +1 -1
  135. data/public/javascripts/erp_app/ckeditor/lang/gu.js +1 -1
  136. data/public/javascripts/erp_app/ckeditor/lang/he.js +1 -1
  137. data/public/javascripts/erp_app/ckeditor/lang/hi.js +1 -1
  138. data/public/javascripts/erp_app/ckeditor/lang/hr.js +1 -1
  139. data/public/javascripts/erp_app/ckeditor/lang/hu.js +1 -1
  140. data/public/javascripts/erp_app/ckeditor/lang/is.js +1 -1
  141. data/public/javascripts/erp_app/ckeditor/lang/it.js +1 -1
  142. data/public/javascripts/erp_app/ckeditor/lang/ja.js +1 -1
  143. data/public/javascripts/erp_app/ckeditor/lang/ka.js +1 -1
  144. data/public/javascripts/erp_app/ckeditor/lang/km.js +1 -1
  145. data/public/javascripts/erp_app/ckeditor/lang/ko.js +1 -1
  146. data/public/javascripts/erp_app/ckeditor/lang/lt.js +1 -1
  147. data/public/javascripts/erp_app/ckeditor/lang/lv.js +1 -1
  148. data/public/javascripts/erp_app/ckeditor/lang/mn.js +1 -1
  149. data/public/javascripts/erp_app/ckeditor/lang/ms.js +1 -1
  150. data/public/javascripts/erp_app/ckeditor/lang/nb.js +1 -1
  151. data/public/javascripts/erp_app/ckeditor/lang/nl.js +1 -1
  152. data/public/javascripts/erp_app/ckeditor/lang/no.js +1 -1
  153. data/public/javascripts/erp_app/ckeditor/lang/pl.js +1 -1
  154. data/public/javascripts/erp_app/ckeditor/lang/pt-br.js +1 -1
  155. data/public/javascripts/erp_app/ckeditor/lang/pt.js +1 -1
  156. data/public/javascripts/erp_app/ckeditor/lang/ro.js +1 -1
  157. data/public/javascripts/erp_app/ckeditor/lang/ru.js +1 -1
  158. data/public/javascripts/erp_app/ckeditor/lang/sk.js +1 -1
  159. data/public/javascripts/erp_app/ckeditor/lang/sl.js +1 -1
  160. data/public/javascripts/erp_app/ckeditor/lang/sr-latn.js +1 -1
  161. data/public/javascripts/erp_app/ckeditor/lang/sr.js +1 -1
  162. data/public/javascripts/erp_app/ckeditor/lang/sv.js +1 -1
  163. data/public/javascripts/erp_app/ckeditor/lang/th.js +1 -1
  164. data/public/javascripts/erp_app/ckeditor/lang/tr.js +1 -1
  165. data/public/javascripts/erp_app/ckeditor/lang/uk.js +1 -1
  166. data/public/javascripts/erp_app/ckeditor/lang/vi.js +1 -1
  167. data/public/javascripts/erp_app/ckeditor/lang/zh-cn.js +1 -1
  168. data/public/javascripts/erp_app/ckeditor/lang/zh.js +1 -1
  169. data/public/javascripts/erp_app/ckeditor/plugins/autogrow/plugin.js +1 -1
  170. data/public/javascripts/erp_app/ckeditor/plugins/docprops/dialogs/docprops.js +2 -2
  171. data/public/javascripts/erp_app/ckeditor/plugins/find/dialogs/find.js +5 -5
  172. data/public/javascripts/erp_app/ckeditor/plugins/flash/dialogs/flash.js +1 -1
  173. data/public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/textarea.js +1 -1
  174. data/public/javascripts/erp_app/ckeditor/plugins/image/dialogs/image.js +1 -1
  175. data/public/javascripts/erp_app/ckeditor/plugins/link/dialogs/link.js +1 -1
  176. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/codemirror_config.js +85 -0
  177. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/editor.css +96 -0
  178. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/buttonbg.gif +0 -0
  179. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/cancel.png +0 -0
  180. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/highlight.png +0 -0
  181. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/redo.png +0 -0
  182. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/reindent.png +0 -0
  183. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/save.png +0 -0
  184. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/search.png +0 -0
  185. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/undo.png +0 -0
  186. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/nocolors.css +24 -0
  187. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/LICENSE +23 -0
  188. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/bigtest.html +1296 -0
  189. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/compress.html +169 -0
  190. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/css/csharpcolors.css +60 -0
  191. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/index.html +61 -0
  192. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/js/parsecsharp.js +329 -0
  193. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/js/tokenizecsharp.js +196 -0
  194. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/LICENSE +24 -0
  195. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/css/freemarkercolors.css +63 -0
  196. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/index.html +75 -0
  197. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/js/parsefreemarker.js +380 -0
  198. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/groovy/index.html +57 -0
  199. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/LICENSE +20 -0
  200. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/css/javacolors.css +64 -0
  201. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/index.html +66 -0
  202. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/js/parsejava.js +285 -0
  203. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/js/tokenizejava.js +222 -0
  204. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/LICENSE +32 -0
  205. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/css/luacolors.css +63 -0
  206. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/index.html +68 -0
  207. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/js/parselua.js +254 -0
  208. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/LICENSE +23 -0
  209. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/css/ometacolors.css +63 -0
  210. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/index.html +77 -0
  211. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/js/parseometa.js +364 -0
  212. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/js/tokenizeometa.js +209 -0
  213. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/LICENSE +37 -0
  214. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/css/phpcolors.css +114 -0
  215. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/index.html +310 -0
  216. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/js/parsephp.js +419 -0
  217. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/js/parsephphtmlmixed.js +116 -0
  218. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/js/tokenizephp.js +1208 -0
  219. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/LICENSE +22 -0
  220. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/css/plsqlcolors.css +57 -0
  221. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/index.html +67 -0
  222. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/js/parseplsql.js +233 -0
  223. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/LICENSE +32 -0
  224. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/css/pythoncolors.css +58 -0
  225. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/index.html +141 -0
  226. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/js/parsepython.js +541 -0
  227. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/css/js-regexcolors.css +214 -0
  228. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/css/regexcolors.css +214 -0
  229. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/index.html +114 -0
  230. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js/parsejavascript_and_regex.js +91 -0
  231. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js/parseregex-unicode.js +284 -0
  232. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js/parseregex.js +847 -0
  233. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js-regex.html +118 -0
  234. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/LICENSE +23 -0
  235. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/css/schemecolors.css +45 -0
  236. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/index.html +82 -0
  237. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/js/parsescheme.js +428 -0
  238. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/js/tokenizescheme.js +241 -0
  239. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/LICENSE +22 -0
  240. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/css/sqlcolors.css +59 -0
  241. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/index.html +56 -0
  242. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/js/parsesql.js +267 -0
  243. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/LICENSE +13 -0
  244. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/css/xqcolors-dark.css +93 -0
  245. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/css/xqcolors.css +99 -0
  246. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/css/xqcolors2.css +96 -0
  247. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/index.html +552 -0
  248. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/js/parsexquery.js +234 -0
  249. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/js/tokenizexquery.js +457 -0
  250. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/baboon.png +0 -0
  251. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/baboon_vector.ai +965 -0
  252. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/csscolors.css +55 -0
  253. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/docs.css +158 -0
  254. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/font.js +15 -0
  255. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/jscolors.css +59 -0
  256. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/people.jpg +0 -0
  257. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/sparqlcolors.css +43 -0
  258. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/xmlcolors.css +55 -0
  259. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/csstest.html +60 -0
  260. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/faq.html +86 -0
  261. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/favicon.ico +0 -0
  262. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/googleb196c451afc2ee11.html +1 -0
  263. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/googlehostedservice.html +1 -0
  264. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/highlight.html +82 -0
  265. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/htmltest.html +53 -0
  266. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/index.html +254 -0
  267. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/codemirror.js +582 -0
  268. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/editor.js +1670 -0
  269. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/highlight.js +68 -0
  270. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/mirrorframe.js +81 -0
  271. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsecss.js +161 -0
  272. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsedummy.js +32 -0
  273. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsehtmlmixed.js +93 -0
  274. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsejavascript.js +359 -0
  275. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsesparql.js +162 -0
  276. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsexml.js +291 -0
  277. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/select.js +697 -0
  278. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/stringstream.js +159 -0
  279. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/tokenize.js +57 -0
  280. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/tokenizejavascript.js +174 -0
  281. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/undo.js +413 -0
  282. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/unittests.js +44 -0
  283. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/util.js +133 -0
  284. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/jstest.html +56 -0
  285. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/manual.html +806 -0
  286. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/mixedtest.html +52 -0
  287. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/sparqltest.html +41 -0
  288. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/story.html +672 -0
  289. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/unittests.html +125 -0
  290. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/xhtmltest.xhtml +50 -0
  291. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/lang/de.js +20 -0
  292. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/lang/en.js +20 -0
  293. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/dialogs/sourcepopup.js +102 -0
  294. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/lang/de.js +9 -0
  295. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/lang/en.js +9 -0
  296. data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/plugin.js +27 -0
  297. data/public/javascripts/erp_app/ckeditor/plugins/specialchar/dialogs/specialchar.js +1 -1
  298. data/public/javascripts/erp_app/ckeditor/plugins/specialchar/lang/en.js +1 -1
  299. data/public/javascripts/erp_app/ckeditor/plugins/table/dialogs/table.js +4 -4
  300. data/public/javascripts/erp_app/ckeditor/plugins/wsc/dialogs/wsc.js +1 -1
  301. data/public/javascripts/erp_app/ckeditor/skins/kama/dialog.css +1 -1
  302. data/public/javascripts/erp_app/ckeditor/skins/kama/editor.css +3 -3
  303. data/public/javascripts/erp_app/ckeditor/skins/office2003/dialog.css +1 -1
  304. data/public/javascripts/erp_app/ckeditor/skins/office2003/editor.css +1 -1
  305. data/public/javascripts/erp_app/ckeditor/skins/v2/dialog.css +1 -1
  306. data/public/javascripts/erp_app/ckeditor/skins/v2/editor.css +1 -1
  307. data/public/javascripts/erp_app/ckeditor/themes/default/theme.js +2 -2
  308. data/public/javascripts/erp_app/ckeditor_example_config_override.js +44 -0
  309. data/public/javascripts/erp_app/desktop/applications/configuration_management/configuration_options_panel.js +229 -0
  310. data/public/javascripts/erp_app/desktop/applications/configuration_management/configuration_tree_panel.js +482 -0
  311. data/public/javascripts/erp_app/desktop/applications/configuration_management/configuration_types_panel.js +425 -0
  312. data/public/javascripts/erp_app/desktop/applications/configuration_management/module.js +95 -0
  313. data/public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js +68 -0
  314. data/public/javascripts/erp_app/desktop/applications/control_panel/application_management_panel.js +2 -1
  315. data/public/javascripts/erp_app/desktop/applications/control_panel/module.js +48 -47
  316. data/public/javascripts/erp_app/desktop/applications/control_panel/profile_management_panel.js +141 -84
  317. data/public/javascripts/erp_app/desktop/applications/file_manager/module.js +1 -2
  318. data/public/javascripts/erp_app/desktop/applications/scaffold/models_tree_panel.js +1 -2
  319. data/public/javascripts/erp_app/desktop/applications/system_management/application_role_management_panel.js +1 -2
  320. data/public/javascripts/erp_app/desktop/applications/user_management/module.js +10 -6
  321. data/public/javascripts/erp_app/desktop/applications/user_management/role_management_panel.js +3 -9
  322. data/public/javascripts/erp_app/desktop/applications/user_management/user_application_mgt_panel.js +4 -10
  323. data/public/javascripts/erp_app/ecommerce/credit_card_window.js +1 -1
  324. data/public/javascripts/erp_app/jquery_support.js +5 -5
  325. data/public/javascripts/erp_app/login/mobile.js +52 -0
  326. data/public/javascripts/erp_app/mobile/app.js +46 -0
  327. data/public/javascripts/erp_app/mobile/applications/user_management/app/model/user.js +14 -0
  328. data/public/javascripts/erp_app/mobile/applications/user_management/app/store/users.js +19 -0
  329. data/public/javascripts/erp_app/mobile/applications/user_management/app/view/templates.js +24 -0
  330. data/public/javascripts/erp_app/mobile/applications/user_management/app.js +168 -0
  331. data/public/javascripts/erp_app/mobile/mobile_base.js +10 -0
  332. data/public/javascripts/erp_app/organizer/applications/crm/base.js +415 -117
  333. data/public/javascripts/erp_app/organizer/applications/crm/contact_mechanism_grid.js +8 -1
  334. data/public/javascripts/erp_app/organizer/applications/crm/party_grid.js +33 -36
  335. data/public/javascripts/erp_app/organizer/applications/crm/userinfo.js +215 -0
  336. data/public/javascripts/erp_app/organizer/layout.js +9 -11
  337. data/public/javascripts/erp_app/shared/active_ext/active_ext_grid.js +1 -2
  338. data/public/javascripts/erp_app/shared/active_ext/active_ext_grid_panel.js +2 -3
  339. data/public/javascripts/erp_app/shared/compass_ckeditor.js +7 -6
  340. data/public/javascripts/erp_app/shared/compass_codemirror.js +161 -162
  341. data/public/javascripts/erp_app/shared/configuration/configuration_form.js +278 -0
  342. data/public/javascripts/erp_app/shared/configuration/configuration_panel.js +109 -0
  343. data/public/javascripts/erp_app/{coolclock → shared/coolclock}/coolclock.js +0 -0
  344. data/public/javascripts/erp_app/{coolclock → shared/coolclock}/moreskins.js +0 -0
  345. data/public/javascripts/erp_app/{coolclock → shared/coolclock}/tray_clock.js +0 -0
  346. data/public/javascripts/erp_app/shared/dynamic_editable_grid.js +29 -28
  347. data/public/javascripts/erp_app/shared/dynamic_editable_grid_loader_panel.js +3 -3
  348. data/public/javascripts/erp_app/shared/file_manager_tree.js +41 -25
  349. data/public/javascripts/erp_app/shared/file_upload/Ext.ux.AwesomeUploader.js +1 -1
  350. data/public/javascripts/erp_app/shared/file_upload/Ext.ux.XHRUpload.js +1 -1
  351. data/public/javascripts/erp_app/shared/file_upload/upload_window.js +245 -242
  352. data/public/javascripts/erp_app/shared/google_map_panel.js +82 -83
  353. data/public/javascripts/erp_app/shared/notes_grid.js +1 -2
  354. data/public/javascripts/erp_app/shared/preference_form.js +3 -5
  355. data/public/javascripts/erp_app/tinymce/Ext.ux.TinyMCE.js +689 -0
  356. data/public/javascripts/erp_app/tinymce/center_region.js +611 -0
  357. data/public/javascripts/erp_app/utility.js +284 -246
  358. data/public/javascripts/erp_app/widgets.js +39 -35
  359. data/public/javascripts/extjs/Ext.ux.form.MultiSelect.js +422 -0
  360. data/public/javascripts/extjs/ext-all-debug.js +15973 -12927
  361. data/public/javascripts/extjs/ext-all.js +1 -1
  362. data/public/javascripts/extjs/overrides.js +61 -0
  363. data/public/javascripts/sencha_touch/sencha-touch-all-debug.js +78370 -0
  364. data/public/javascripts/sencha_touch/sencha-touch-all.js +15 -0
  365. data/public/stylesheets/erp_app/mobile/applications/user_management/main.css +5 -0
  366. data/public/stylesheets/erp_app/mobile/mobile.css +336 -0
  367. data/public/stylesheets/erp_app/{compass-ext-all.css → shared/compass-ext-all.css} +37 -1
  368. data/public/stylesheets/extjs/resources/css/ext-all-access.css +1 -1
  369. data/public/stylesheets/extjs/resources/css/ext-all-gray.css +1 -1
  370. data/public/stylesheets/extjs/resources/css/ext-all-scoped.css +1 -1
  371. data/public/stylesheets/extjs/resources/css/ext-all.css +1 -1
  372. data/public/stylesheets/extjs/resources/css/ext-ie-scoped.css +1 -1
  373. data/public/stylesheets/extjs/resources/css/ext-ie.css +1 -1
  374. data/public/stylesheets/extjs/resources/css/ext-sandbox.css +1 -1
  375. data/public/stylesheets/extjs/resources/css/ext-standard-scoped.css +1 -1
  376. data/public/stylesheets/extjs/resources/css/ext-standard.css +1 -1
  377. data/public/stylesheets/extjs/resources/sass/ext-all-access.scss +7 -0
  378. data/public/stylesheets/extjs/resources/sass/ext-all-gray.scss +6 -0
  379. data/public/stylesheets/extjs/resources/themes/images/access/boundlist/trigger-arrow.png +0 -0
  380. data/public/stylesheets/extjs/resources/themes/images/access/grid/refresh-disabled.gif +0 -0
  381. data/public/stylesheets/extjs/resources/themes/images/access/tab-bar/{tab-bar-bg.gif → tab-bar-default-bg.gif} +0 -0
  382. data/public/stylesheets/extjs/resources/themes/images/access/tree/drop-above.gif +0 -0
  383. data/public/stylesheets/extjs/resources/themes/images/access/tree/drop-append.gif +0 -0
  384. data/public/stylesheets/extjs/resources/themes/images/access/tree/drop-below.gif +0 -0
  385. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-large-focus-corners.gif +0 -0
  386. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-large-over-corners.gif +0 -0
  387. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-large-pressed-corners.gif +0 -0
  388. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-medium-focus-corners.gif +0 -0
  389. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-medium-over-corners.gif +0 -0
  390. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif +0 -0
  391. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-small-focus-corners.gif +0 -0
  392. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-small-over-corners.gif +0 -0
  393. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-small-pressed-corners.gif +0 -0
  394. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif +0 -0
  395. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif +0 -0
  396. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif +0 -0
  397. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif +0 -0
  398. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif +0 -0
  399. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif +0 -0
  400. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif +0 -0
  401. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif +0 -0
  402. data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif +0 -0
  403. data/public/stylesheets/extjs/resources/themes/images/default/form-invalid-tip/form-invalid-tip-corners.gif +0 -0
  404. data/public/stylesheets/extjs/resources/themes/images/default/form-invalid-tip/form-invalid-tip-sides.gif +0 -0
  405. data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif +0 -0
  406. data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif +0 -0
  407. data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif +0 -0
  408. data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-top-disabled-bg.gif +0 -0
  409. data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-top-disabled-corners.gif +0 -0
  410. data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-top-disabled-sides.gif +0 -0
  411. data/public/stylesheets/extjs/resources/themes/images/default/tab-bar/tab-bar-default-bg.gif +0 -0
  412. data/public/stylesheets/extjs/resources/themes/images/default/tip/tip-corners.gif +0 -0
  413. data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-bottom-sides.gif +0 -0
  414. data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-left-sides.gif +0 -0
  415. data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-right-sides.gif +0 -0
  416. data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-top-corners.gif +0 -0
  417. data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-top-sides.gif +0 -0
  418. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/_all.scss +3 -0
  419. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/_mixins.scss +6 -3
  420. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/core/_core.scss +17 -17
  421. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/core/_reset.scss +17 -7
  422. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/layout/_layout.scss +10 -6
  423. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/mixins/_frame.scss +4 -4
  424. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/mixins/_reset-extras.scss +144 -0
  425. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss +8 -4
  426. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_dragdrop.scss +3 -3
  427. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_messagebox.scss +5 -5
  428. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_resizable.scss +6 -6
  429. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_splitter.scss +8 -8
  430. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_tool.scss +1 -1
  431. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/variables/_core.scss +1 -1
  432. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/variables/_menu.scss +1 -0
  433. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_button.scss +38 -27
  434. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_datepicker.scss +7 -7
  435. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_drawcomponent.scss +1 -5
  436. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_grid.scss +56 -57
  437. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_loadmask.scss +1 -1
  438. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_menu.scss +22 -16
  439. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_panel.scss +10 -4
  440. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_progress-bar.scss +2 -1
  441. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_qtip.scss +1 -1
  442. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_slider.scss +9 -11
  443. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_tab.scss +68 -43
  444. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_tabbar.scss +1 -1
  445. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_toolbar.scss +3 -3
  446. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_tree.scss +48 -31
  447. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_all.scss +4 -2
  448. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_checkbox.scss +3 -2
  449. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss +3 -2
  450. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_field.scss +3 -3
  451. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_fieldset.scss +1 -5
  452. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss +16 -15
  453. data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss +10 -10
  454. data/public/stylesheets/extjs/resources/themes/templates/resources/sass/config.rb +2 -4
  455. data/public/stylesheets/extjs/resources/themes/templates/resources/sass/my-ext-theme.scss +1 -0
  456. data/public/stylesheets/sencha_touch/resources/css/android.css +1 -0
  457. data/public/stylesheets/sencha_touch/resources/css/apple.css +1 -0
  458. data/public/stylesheets/sencha_touch/resources/css/bb6.css +1 -0
  459. data/public/stylesheets/sencha_touch/resources/css/sencha-touch.css +1 -0
  460. data/public/stylesheets/sencha_touch/resources/css/touch-charts.css +1 -0
  461. data/public/stylesheets/sencha_touch/resources/css-debug/android.css +6757 -0
  462. data/public/stylesheets/sencha_touch/resources/css-debug/apple.css +6766 -0
  463. data/public/stylesheets/sencha_touch/resources/css-debug/bb6.css +6352 -0
  464. data/public/stylesheets/sencha_touch/resources/css-debug/sencha-touch.css +6755 -0
  465. data/public/stylesheets/sencha_touch/resources/images/icon1.png +0 -0
  466. data/public/stylesheets/sencha_touch/resources/images/icon2.png +0 -0
  467. data/public/stylesheets/sencha_touch/resources/images/icon3.png +0 -0
  468. data/public/stylesheets/sencha_touch/resources/images/icon4.png +0 -0
  469. data/public/stylesheets/sencha_touch/resources/images/welcome.png +0 -0
  470. data/public/stylesheets/sencha_touch/resources/sass/android.scss +37 -0
  471. data/public/stylesheets/sencha_touch/resources/sass/apple.scss +39 -0
  472. data/public/stylesheets/sencha_touch/resources/sass/bb6.scss +66 -0
  473. data/public/stylesheets/sencha_touch/resources/sass/config-debug.rb +11 -0
  474. data/public/stylesheets/sencha_touch/resources/sass/config.rb +11 -0
  475. data/public/stylesheets/sencha_touch/resources/sass/sencha-touch.scss +18 -0
  476. data/public/stylesheets/sencha_touch/resources/themes/compass_init.rb +6 -0
  477. data/public/stylesheets/sencha_touch/resources/themes/images/default/check.png +0 -0
  478. data/public/stylesheets/sencha_touch/resources/themes/images/default/clear_icon.png +0 -0
  479. data/public/stylesheets/sencha_touch/resources/themes/images/default/disclosure.png +0 -0
  480. data/public/stylesheets/sencha_touch/resources/themes/images/default/disclosure2.png +0 -0
  481. data/public/stylesheets/sencha_touch/resources/themes/images/default/dotgrid.png +0 -0
  482. data/public/stylesheets/sencha_touch/resources/themes/images/default/loading.gif +0 -0
  483. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/action.png +0 -0
  484. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/add.png +0 -0
  485. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/add1.png +0 -0
  486. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/add_black.png +0 -0
  487. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/address_book.png +0 -0
  488. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_down.png +0 -0
  489. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_left.png +0 -0
  490. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_right.png +0 -0
  491. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_up.png +0 -0
  492. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/at.png +0 -0
  493. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/atom.png +0 -0
  494. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment.png +0 -0
  495. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment2.png +0 -0
  496. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment3.png +0 -0
  497. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment_black.png +0 -0
  498. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/backspace.png +0 -0
  499. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/battery_full.png +0 -0
  500. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/battery_low.png +0 -0
  501. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/battery_power.png +0 -0
  502. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/blank.png +0 -0
  503. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bolt.png +0 -0
  504. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bolt_side.png +0 -0
  505. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmark1.png +0 -0
  506. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmark2.png +0 -0
  507. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmark_black.png +0 -0
  508. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmarks.png +0 -0
  509. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/briefcase1.png +0 -0
  510. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/briefcase2.png +0 -0
  511. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/brightness1.png +0 -0
  512. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/brightness2.png +0 -0
  513. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/broadcast.png +0 -0
  514. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bug.png +0 -0
  515. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bulb.png +0 -0
  516. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bullseye1.png +0 -0
  517. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bullseye2.png +0 -0
  518. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/calendar.png +0 -0
  519. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/calendar2.png +0 -0
  520. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/calendar_add.png +0 -0
  521. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/card1.png +0 -0
  522. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/card2.png +0 -0
  523. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chart1.png +0 -0
  524. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chart2.png +0 -0
  525. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chart3.png +0 -0
  526. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat.png +0 -0
  527. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat1.png +0 -0
  528. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat2.png +0 -0
  529. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat3.png +0 -0
  530. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat4.png +0 -0
  531. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat_black1.png +0 -0
  532. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat_black2.png +0 -0
  533. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check1.png +0 -0
  534. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check2.png +0 -0
  535. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check_black1.png +0 -0
  536. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check_black2.png +0 -0
  537. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check_dotted.png +0 -0
  538. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/circle.png +0 -0
  539. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/circle2.png +0 -0
  540. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/clash.png +0 -0
  541. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud.png +0 -0
  542. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_black.png +0 -0
  543. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_black_upload1.png +0 -0
  544. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_black_upload2.png +0 -0
  545. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_bolt.png +0 -0
  546. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_download.png +0 -0
  547. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/code1.png +0 -0
  548. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/code2.png +0 -0
  549. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/code3.png +0 -0
  550. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compass1.png +0 -0
  551. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compass2.png +0 -0
  552. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compass3.png +0 -0
  553. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose.png +0 -0
  554. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose1.png +0 -0
  555. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose2.png +0 -0
  556. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose3.png +0 -0
  557. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose_black.png +0 -0
  558. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/contract.png +0 -0
  559. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cube.png +0 -0
  560. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/data.png +0 -0
  561. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete.png +0 -0
  562. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete1.png +0 -0
  563. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete_black1.png +0 -0
  564. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete_black2.png +0 -0
  565. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc.png +0 -0
  566. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc2.png +0 -0
  567. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_black.png +0 -0
  568. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_black_landscape.png +0 -0
  569. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_compose1.png +0 -0
  570. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_compose2.png +0 -0
  571. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_delete.png +0 -0
  572. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_down.png +0 -0
  573. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_drawer.png +0 -0
  574. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_list.png +0 -0
  575. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_new.png +0 -0
  576. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_send.png +0 -0
  577. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_up.png +0 -0
  578. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs1.png +0 -0
  579. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs2.png +0 -0
  580. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs_black1.png +0 -0
  581. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs_black2.png +0 -0
  582. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download.png +0 -0
  583. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download1.png +0 -0
  584. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download2.png +0 -0
  585. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download_screen.png +0 -0
  586. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/eject.png +0 -0
  587. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/empty1.png +0 -0
  588. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/empty2.png +0 -0
  589. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/equalizer1.png +0 -0
  590. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/equalizer2.png +0 -0
  591. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/event_complete.png +0 -0
  592. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/expand.png +0 -0
  593. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/favorites.png +0 -0
  594. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/favorites1.png +0 -0
  595. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/favorites_circle.png +0 -0
  596. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/fforward.png +0 -0
  597. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/find.png +0 -0
  598. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/flag.png +0 -0
  599. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/flickr2.png +0 -0
  600. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder.png +0 -0
  601. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_add.png +0 -0
  602. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_black.png +0 -0
  603. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_black_open.png +0 -0
  604. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_delete.png +0 -0
  605. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_delete2.png +0 -0
  606. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_lock.png +0 -0
  607. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_open2.png +0 -0
  608. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/font.png +0 -0
  609. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/forbidden.png +0 -0
  610. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/forward_black.png +0 -0
  611. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/globe1.png +0 -0
  612. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/globe2.png +0 -0
  613. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/globe_black.png +0 -0
  614. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/headphones.png +0 -0
  615. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/heart.png +0 -0
  616. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/heart_circle.png +0 -0
  617. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/help.png +0 -0
  618. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/help_black.png +0 -0
  619. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/home.png +0 -0
  620. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/home2.png +0 -0
  621. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/hot.png +0 -0
  622. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/inbox1.png +0 -0
  623. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/inbox2.png +0 -0
  624. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/inbox3.png +0 -0
  625. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/infinite.png +0 -0
  626. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/infinite2.png +0 -0
  627. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info.png +0 -0
  628. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info2.png +0 -0
  629. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info_plain.png +0 -0
  630. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info_plain2.png +0 -0
  631. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/json.png +0 -0
  632. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/lab.png +0 -0
  633. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/layout.png +0 -0
  634. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/link1.png +0 -0
  635. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/link2.png +0 -0
  636. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/link_black.png +0 -0
  637. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/list.png +0 -0
  638. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate.png +0 -0
  639. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate1.png +0 -0
  640. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate2.png +0 -0
  641. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate3.png +0 -0
  642. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate4.png +0 -0
  643. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/lock_closed.png +0 -0
  644. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/lock_open.png +0 -0
  645. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/look.png +0 -0
  646. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/loop.png +0 -0
  647. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/loop2.png +0 -0
  648. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/loop_circle.png +0 -0
  649. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/magic.png +0 -0
  650. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail.png +0 -0
  651. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail1.png +0 -0
  652. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail2.png +0 -0
  653. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail3.png +0 -0
  654. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail4.png +0 -0
  655. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail5.png +0 -0
  656. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/maps.png +0 -0
  657. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mic.png +0 -0
  658. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus1.png +0 -0
  659. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus2.png +0 -0
  660. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus_black1.png +0 -0
  661. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus_black2.png +0 -0
  662. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor1.png +0 -0
  663. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor2.png +0 -0
  664. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor3.png +0 -0
  665. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor4.png +0 -0
  666. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/more.png +0 -0
  667. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mouse.png +0 -0
  668. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/move.png +0 -0
  669. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/music1.png +0 -0
  670. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/music2.png +0 -0
  671. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/nodes1.png +0 -0
  672. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/nodes2.png +0 -0
  673. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note1.png +0 -0
  674. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note2.png +0 -0
  675. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note3.png +0 -0
  676. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note_black.png +0 -0
  677. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/nuclear.png +0 -0
  678. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/organize.png +0 -0
  679. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/outbox.png +0 -0
  680. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/pause.png +0 -0
  681. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone1.png +0 -0
  682. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone2.png +0 -0
  683. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone_black.png +0 -0
  684. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone_ring1.png +0 -0
  685. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone_ring2.png +0 -0
  686. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo1.png +0 -0
  687. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo2.png +0 -0
  688. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo3.png +0 -0
  689. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo_black1.png +0 -0
  690. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo_black2.png +0 -0
  691. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photos1.png +0 -0
  692. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photos2.png +0 -0
  693. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photos4.png +0 -0
  694. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/piechart.png +0 -0
  695. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play1.png +0 -0
  696. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play2.png +0 -0
  697. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play_black1.png +0 -0
  698. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play_black2.png +0 -0
  699. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/podcast.png +0 -0
  700. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/power socket.png +0 -0
  701. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/power_on.png +0 -0
  702. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/print.png +0 -0
  703. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/print2.png +0 -0
  704. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote1.png +0 -0
  705. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote2.png +0 -0
  706. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote_black1.png +0 -0
  707. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote_black2.png +0 -0
  708. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote_black3.png +0 -0
  709. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh.png +0 -0
  710. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh1.png +0 -0
  711. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh2.png +0 -0
  712. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh3.png +0 -0
  713. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh5.png +0 -0
  714. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/reply.png +0 -0
  715. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/replytoall.png +0 -0
  716. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/resize.png +0 -0
  717. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/resize_black.png +0 -0
  718. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rewind.png +0 -0
  719. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/right.png +0 -0
  720. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/right2.png +0 -0
  721. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss.png +0 -0
  722. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss2.png +0 -0
  723. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss_black.png +0 -0
  724. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss_black1.png +0 -0
  725. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss_black2.png +0 -0
  726. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/screens.png +0 -0
  727. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search.png +0 -0
  728. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search1.png +0 -0
  729. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search2.png +0 -0
  730. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search_black.png +0 -0
  731. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/server.png +0 -0
  732. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/servers.png +0 -0
  733. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings.png +0 -0
  734. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings1.png +0 -0
  735. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings10.png +0 -0
  736. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings11.png +0 -0
  737. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings3.png +0 -0
  738. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings4.png +0 -0
  739. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings5.png +0 -0
  740. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings6.png +0 -0
  741. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings7.png +0 -0
  742. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings8.png +0 -0
  743. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings9.png +0 -0
  744. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings_black.png +0 -0
  745. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/share.png +0 -0
  746. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shield1.png +0 -0
  747. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shield2.png +0 -0
  748. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shop1.png +0 -0
  749. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shop2.png +0 -0
  750. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shuffle.png +0 -0
  751. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_backforth.png +0 -0
  752. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_cross.png +0 -0
  753. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_leftright.png +0 -0
  754. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_leftright2.png +0 -0
  755. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_split.png +0 -0
  756. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_switch.png +0 -0
  757. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_uturn.png +0 -0
  758. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/spaces1.png +0 -0
  759. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/spaces2.png +0 -0
  760. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer1.png +0 -0
  761. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer2.png +0 -0
  762. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer_black1.png +0 -0
  763. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer_black2.png +0 -0
  764. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/star.png +0 -0
  765. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/stop.png +0 -0
  766. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/stop1.png +0 -0
  767. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/stop2.png +0 -0
  768. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sync.png +0 -0
  769. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tabbed_book.png +0 -0
  770. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tag.png +0 -0
  771. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tag_black.png +0 -0
  772. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tags.png +0 -0
  773. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/team.png +0 -0
  774. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/team1.png +0 -0
  775. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/time.png +0 -0
  776. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/time_repeat.png +0 -0
  777. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/trash.png +0 -0
  778. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/trash2.png +0 -0
  779. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/trash_black.png +0 -0
  780. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tree.png +0 -0
  781. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tv.png +0 -0
  782. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tweak.png +0 -0
  783. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/twitter1.png +0 -0
  784. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/twitter2.png +0 -0
  785. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/up1.png +0 -0
  786. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/up2.png +0 -0
  787. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/up_black.png +0 -0
  788. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/upload2.png +0 -0
  789. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user.png +0 -0
  790. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user3.png +0 -0
  791. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_add.png +0 -0
  792. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_business.png +0 -0
  793. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_fave.png +0 -0
  794. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_list.png +0 -0
  795. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_list2.png +0 -0
  796. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_remote1.png +0 -0
  797. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_remove2.png +0 -0
  798. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_send.png +0 -0
  799. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/video.png +0 -0
  800. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/video_black1.png +0 -0
  801. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/video_black2.png +0 -0
  802. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume.png +0 -0
  803. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_black.png +0 -0
  804. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_down.png +0 -0
  805. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_mute.png +0 -0
  806. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_up.png +0 -0
  807. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/warming_dotted.png +0 -0
  808. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/warning_black.png +0 -0
  809. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi.png +0 -0
  810. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi2.png +0 -0
  811. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi3.png +0 -0
  812. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi4.png +0 -0
  813. data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/window.png +0 -0
  814. data/public/stylesheets/sencha_touch/resources/themes/images/default/pullarrow.png +0 -0
  815. data/public/stylesheets/sencha_touch/resources/themes/images/default/select_mask.png +0 -0
  816. data/public/stylesheets/sencha_touch/resources/themes/images/default/tip.png +0 -0
  817. data/public/stylesheets/sencha_touch/resources/themes/images/default/tip_horizontal.png +0 -0
  818. data/public/stylesheets/sencha_touch/resources/themes/images/default/tip_right.png +0 -0
  819. data/public/stylesheets/sencha_touch/resources/themes/images/default/togglebg.png +0 -0
  820. data/public/stylesheets/sencha_touch/resources/themes/images/default/togglemask.png +0 -0
  821. data/public/stylesheets/sencha_touch/resources/themes/images/default/togglethumb.png +0 -0
  822. data/public/stylesheets/sencha_touch/resources/themes/images/default/togglethumbbg.png +0 -0
  823. data/public/stylesheets/sencha_touch/resources/themes/images/default/togglethumbmask.png +0 -0
  824. data/public/stylesheets/sencha_touch/resources/themes/images/default/trackmask_outer.png +0 -0
  825. data/public/stylesheets/sencha_touch/resources/themes/lib/theme_images.rb +18 -0
  826. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_all.scss +2 -0
  827. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_core.scss +3 -0
  828. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_global.scss +2 -0
  829. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_mixins.scss +196 -0
  830. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_variables.scss +116 -0
  831. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_widgets.scss +16 -0
  832. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss +189 -0
  833. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss +362 -0
  834. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss +62 -0
  835. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss +354 -0
  836. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_carousel.scss +113 -0
  837. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders-basic.scss +102 -0
  838. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss +149 -0
  839. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss +608 -0
  840. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss +5 -0
  841. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss +76 -0
  842. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss +401 -0
  843. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss +121 -0
  844. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss +11 -0
  845. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss +21 -0
  846. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss +94 -0
  847. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss +79 -0
  848. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_picker.scss +154 -0
  849. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_sheets.scss +52 -0
  850. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_tabs.scss +269 -0
  851. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss +182 -0
  852. data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss +156 -0
  853. data/public/stylesheets/sencha_touch/resources/themes/templates/project/manifest.rb +1 -0
  854. data/public/stylesheets/sencha_touch/resources/themes/templates/project/sencha-touch.scss +17 -0
  855. metadata +3251 -2688
  856. data/README.rdoc +0 -2
  857. data/config/initializers/erp_app.rb +0 -4
  858. data/lib/erp_app/extensions/active_record/acts_as_app_container.rb +0 -72
  859. data/lib/erp_app/extensions/railties/action_view.rb +0 -110
  860. data/lib/erp_app/widgets/railties/action_view.rb +0 -36
  861. data/lib/erp_app/widgets/railties/engine.rb +0 -55
  862. data/public/images/icons/add/Thumbs.db +0 -0
  863. data/public/images/icons/calendar/Thumbs.db +0 -0
  864. data/public/images/icons/copy/Thumbs.db +0 -0
  865. data/public/images/icons/cut/Thumbs.db +0 -0
  866. data/public/images/icons/delete/Thumbs.db +0 -0
  867. data/public/images/icons/edit/Thumbs.db +0 -0
  868. data/public/images/icons/folder/Thumbs.db +0 -0
  869. data/public/images/icons/gear/Thumbs.db +0 -0
  870. data/public/images/icons/globe/Thumbs.db +0 -0
  871. data/public/images/icons/grid/Thumbs.db +0 -0
  872. data/public/images/icons/help/Thumbs.db +0 -0
  873. data/public/images/icons/information/Thumbs.db +0 -0
  874. data/public/images/icons/key/Thumbs.db +0 -0
  875. data/public/images/icons/log_out/Thumbs.db +0 -0
  876. data/public/images/icons/mail/Thumbs.db +0 -0
  877. data/public/images/icons/new/Thumbs.db +0 -0
  878. data/public/images/icons/next/Thumbs.db +0 -0
  879. data/public/images/icons/open/Thumbs.db +0 -0
  880. data/public/images/icons/paste/Thumbs.db +0 -0
  881. data/public/images/icons/picture/Thumbs.db +0 -0
  882. data/public/images/icons/presentation/Thumbs.db +0 -0
  883. data/public/images/icons/preview/Thumbs.db +0 -0
  884. data/public/images/icons/previous/Thumbs.db +0 -0
  885. data/public/images/icons/print/Thumbs.db +0 -0
  886. data/public/images/icons/properties/Thumbs.db +0 -0
  887. data/public/images/icons/redo/Thumbs.db +0 -0
  888. data/public/images/icons/refresh/Thumbs.db +0 -0
  889. data/public/images/icons/remove/Thumbs.db +0 -0
  890. data/public/images/icons/rename/Thumbs.db +0 -0
  891. data/public/images/icons/save/Thumbs.db +0 -0
  892. data/public/images/icons/search/Thumbs.db +0 -0
  893. data/public/images/icons/send/Thumbs.db +0 -0
  894. data/public/images/icons/settings/Thumbs.db +0 -0
  895. data/public/images/icons/synchronize/Thumbs.db +0 -0
  896. data/public/images/icons/undo/Thumbs.db +0 -0
  897. data/public/images/icons/upload/Thumbs.db +0 -0
  898. data/public/images/icons/user/Thumbs.db +0 -0
  899. data/public/images/icons/zoom_in/Thumbs.db +0 -0
  900. data/public/images/icons/zoom_out/Thumbs.db +0 -0
  901. data/public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/Thumbs.db +0 -0
  902. data/public/javascripts/erp_app/shared/ajax_pagination.js +0 -33
  903. data/public/stylesheets/extjs/resources/themes/images/access/tab-bar/tab-bar-bg.png +0 -0
  904. data/public/stylesheets/extjs/resources/themes/templates/resources/css/my-ext-theme.css +0 -59
  905. data/spec/dummy/db/schema.rb +0 -709
  906. data/spec/dummy/db/spec.sqlite3 +0 -0
  907. data/spec/dummy/log/RAILS_ENV=spec.log +0 -0
  908. data/spec/dummy/log/development.log +0 -0
  909. data/spec/dummy/log/spec.log +0 -52150
@@ -0,0 +1,1296 @@
1
+ <html xmlns="http://www.w3.org/1999/xhtml">
2
+ <head>
3
+ <script src="js/codemirror.js" type="text/javascript"></script>
4
+ <title>CodeMirror: JavaScript demonstration</title>
5
+ <link rel="stylesheet" type="text/css" href="css/docs.css"/>
6
+ </head>
7
+ <body style="padding: 20px;">
8
+
9
+ <p>This page demonstrates <a href="index.html">CodeMirror</a>'s
10
+ JavaScript parser. Note that the ugly buttons at the top are not are
11
+ not part of CodeMirror proper -- they demonstrate the way it can be
12
+ embedded in a web-application.</p>
13
+
14
+ <div style="border-top: 1px solid black; border-bottom: 1px solid black;">
15
+ <textarea id="code" cols="120" rows="30">
16
+ /* The Editor object manages the content of the editable frame. It
17
+ * catches events, colours nodes, and indents lines. This file also
18
+ * holds some functions for transforming arbitrary DOM structures into
19
+ * plain sequences of &lt;span> and &lt;br> elements
20
+ */
21
+
22
+ // Make sure a string does not contain two consecutive 'collapseable'
23
+ // whitespace characters.
24
+ function makeWhiteSpace(n) {
25
+ var buffer = [], nb = true;
26
+ for (; n > 0; n--) {
27
+ buffer.push((nb || n == 1) ? nbsp : " ");
28
+ nb = !nb;
29
+ }
30
+ return buffer.join("");
31
+ }
32
+
33
+ // Create a set of white-space characters that will not be collapsed
34
+ // by the browser, but will not break text-wrapping either.
35
+ function fixSpaces(string) {
36
+ if (string.charAt(0) == " ") string = nbsp + string.slice(1);
37
+ return string.replace(/[\t \u00a0]{2,}/g, function(s) {return makeWhiteSpace(s.length);});
38
+ }
39
+
40
+ function cleanText(text) {
41
+ return text.replace(/\u00a0/g, " ").replace(/\u200b/g, "");
42
+ }
43
+
44
+ // Create a SPAN node with the expected properties for document part
45
+ // spans.
46
+ function makePartSpan(value, doc) {
47
+ var text = value;
48
+ if (value.nodeType == 3) text = value.nodeValue;
49
+ else value = doc.createTextNode(text);
50
+
51
+ var span = doc.createElement("SPAN");
52
+ span.isPart = true;
53
+ span.appendChild(value);
54
+ span.currentText = text;
55
+ return span;
56
+ }
57
+
58
+ // On webkit, when the last BR of the document does not have text
59
+ // behind it, the cursor can not be put on the line after it. This
60
+ // makes pressing enter at the end of the document occasionally do
61
+ // nothing (or at least seem to do nothing). To work around it, this
62
+ // function makes sure the document ends with a span containing a
63
+ // zero-width space character. The traverseDOM iterator filters such
64
+ // character out again, so that the parsers won't see them. This
65
+ // function is called from a few strategic places to make sure the
66
+ // zwsp is restored after the highlighting process eats it.
67
+ var webkitLastLineHack = webkit ?
68
+ function(container) {
69
+ var last = container.lastChild;
70
+ if (!last || !last.isPart || last.textContent != "\u200b")
71
+ container.appendChild(makePartSpan("\u200b", container.ownerDocument));
72
+ } : function() {};
73
+
74
+ var Editor = (function(){
75
+ // The HTML elements whose content should be suffixed by a newline
76
+ // when converting them to flat text.
77
+ var newlineElements = {"P": true, "DIV": true, "LI": true};
78
+
79
+ function asEditorLines(string) {
80
+ return fixSpaces(string.replace(/\t/g, " ").replace(/\u00a0/g, " ")).replace(/\r\n?/g, "\n").split("\n");
81
+ }
82
+
83
+ // Helper function for traverseDOM. Flattens an arbitrary DOM node
84
+ // into an array of textnodes and &lt;br> tags.
85
+ function simplifyDOM(root) {
86
+ var doc = root.ownerDocument;
87
+ var result = [];
88
+ var leaving = true;
89
+
90
+ function simplifyNode(node) {
91
+ if (node.nodeType == 3) {
92
+ var text = node.nodeValue = fixSpaces(node.nodeValue.replace(/[\r\u200b]/g, "").replace(/\n/g, " "));
93
+ if (text.length) leaving = false;
94
+ result.push(node);
95
+ }
96
+ else if (node.nodeName == "BR" &amp;&amp; node.childNodes.length == 0) {
97
+ leaving = true;
98
+ result.push(node);
99
+ }
100
+ else {
101
+ forEach(node.childNodes, simplifyNode);
102
+ if (!leaving &amp;&amp; newlineElements.hasOwnProperty(node.nodeName)) {
103
+ leaving = true;
104
+ result.push(doc.createElement("BR"));
105
+ }
106
+ }
107
+ }
108
+
109
+ simplifyNode(root);
110
+ return result;
111
+ }
112
+
113
+ // Creates a MochiKit-style iterator that goes over a series of DOM
114
+ // nodes. The values it yields are strings, the textual content of
115
+ // the nodes. It makes sure that all nodes up to and including the
116
+ // one whose text is being yielded have been 'normalized' to be just
117
+ // &lt;span> and &lt;br> elements.
118
+ // See the story.html file for some short remarks about the use of
119
+ // continuation-passing style in this iterator.
120
+ function traverseDOM(start){
121
+ function yield(value, c){cc = c; return value;}
122
+ function push(fun, arg, c){return function(){return fun(arg, c);};}
123
+ function stop(){cc = stop; throw StopIteration;};
124
+ var cc = push(scanNode, start, stop);
125
+ var owner = start.ownerDocument;
126
+ var nodeQueue = [];
127
+
128
+ // Create a function that can be used to insert nodes after the
129
+ // one given as argument.
130
+ function pointAt(node){
131
+ var parent = node.parentNode;
132
+ var next = node.nextSibling;
133
+ return function(newnode) {
134
+ parent.insertBefore(newnode, next);
135
+ };
136
+ }
137
+ var point = null;
138
+
139
+ // Insert a normalized node at the current point. If it is a text
140
+ // node, wrap it in a &lt;span>, and give that span a currentText
141
+ // property -- this is used to cache the nodeValue, because
142
+ // directly accessing nodeValue is horribly slow on some browsers.
143
+ // The dirty property is used by the highlighter to determine
144
+ // which parts of the document have to be re-highlighted.
145
+ function insertPart(part){
146
+ var text = "\n";
147
+ if (part.nodeType == 3) {
148
+ select.snapshotChanged();
149
+ part = makePartSpan(part, owner);
150
+ text = part.currentText;
151
+ }
152
+ part.dirty = true;
153
+ nodeQueue.push(part);
154
+ point(part);
155
+ return text;
156
+ }
157
+
158
+ // Extract the text and newlines from a DOM node, insert them into
159
+ // the document, and yield the textual content. Used to replace
160
+ // non-normalized nodes.
161
+ function writeNode(node, c){
162
+ var toYield = [];
163
+ forEach(simplifyDOM(node), function(part) {
164
+ toYield.push(insertPart(part));
165
+ });
166
+ return yield(toYield.join(""), c);
167
+ }
168
+
169
+ // Check whether a node is a normalized &lt;span> element.
170
+ function partNode(node){
171
+ if (node.isPart &amp;&amp; node.childNodes.length == 1 &amp;&amp; node.firstChild.nodeType == 3) {
172
+ node.currentText = node.firstChild.nodeValue;
173
+ return !/[\n\t\r]/.test(node.currentText);
174
+ }
175
+ return false;
176
+ }
177
+
178
+ // Handle a node. Add its successor to the continuation if there
179
+ // is one, find out whether the node is normalized. If it is,
180
+ // yield its content, otherwise, normalize it (writeNode will take
181
+ // care of yielding).
182
+ function scanNode(node, c){
183
+ if (node.nextSibling)
184
+ c = push(scanNode, node.nextSibling, c);
185
+
186
+ if (partNode(node)){
187
+ nodeQueue.push(node);
188
+ return yield(node.currentText, c);
189
+ }
190
+ else if (node.nodeName == "BR") {
191
+ nodeQueue.push(node);
192
+ return yield("\n", c);
193
+ }
194
+ else {
195
+ point = pointAt(node);
196
+ removeElement(node);
197
+ return writeNode(node, c);
198
+ }
199
+ }
200
+
201
+ // MochiKit iterators are objects with a next function that
202
+ // returns the next value or throws StopIteration when there are
203
+ // no more values.
204
+ return {next: function(){return cc();}, nodes: nodeQueue};
205
+ }
206
+
207
+ // Determine the text size of a processed node.
208
+ function nodeSize(node) {
209
+ if (node.nodeName == "BR")
210
+ return 1;
211
+ else
212
+ return node.currentText.length;
213
+ }
214
+
215
+ // Search backwards through the top-level nodes until the next BR or
216
+ // the start of the frame.
217
+ function startOfLine(node) {
218
+ while (node &amp;&amp; node.nodeName != "BR") node = node.previousSibling;
219
+ return node;
220
+ }
221
+ function endOfLine(node, container) {
222
+ if (!node) node = container.firstChild;
223
+ else if (node.nodeName == "BR") node = node.nextSibling;
224
+
225
+ while (node &amp;&amp; node.nodeName != "BR") node = node.nextSibling;
226
+ return node;
227
+ }
228
+
229
+ // Replace all DOM nodes in the current selection with new ones.
230
+ // Needed to prevent issues in IE where the old DOM nodes can be
231
+ // pasted back into the document, still holding their old undo
232
+ // information.
233
+ function scrubPasted(container, start, start2) {
234
+ var end = select.selectionTopNode(container, true),
235
+ doc = container.ownerDocument;
236
+ if (start != null &amp;&amp; start.parentNode != container) start = start2;
237
+ if (start === false) start = null;
238
+ if (start == end || !end || !container.firstChild) return;
239
+
240
+ var clear = traverseDOM(start ? start.nextSibling : container.firstChild);
241
+ while (end.parentNode == container) try{clear.next();}catch(e){break;}
242
+ forEach(clear.nodes, function(node) {
243
+ var newNode = node.nodeName == "BR" ? doc.createElement("BR") : makePartSpan(node.currentText, doc);
244
+ container.replaceChild(newNode, node);
245
+ });
246
+ }
247
+
248
+ // Client interface for searching the content of the editor. Create
249
+ // these by calling CodeMirror.getSearchCursor. To use, call
250
+ // findNext on the resulting object -- this returns a boolean
251
+ // indicating whether anything was found, and can be called again to
252
+ // skip to the next find. Use the select and replace methods to
253
+ // actually do something with the found locations.
254
+ function SearchCursor(editor, string, fromCursor) {
255
+ this.editor = editor;
256
+ this.history = editor.history;
257
+ this.history.commit();
258
+
259
+ // Are we currently at an occurrence of the search string?
260
+ this.atOccurrence = false;
261
+ // The object stores a set of nodes coming after its current
262
+ // position, so that when the current point is taken out of the
263
+ // DOM tree, we can still try to continue.
264
+ this.fallbackSize = 15;
265
+ var cursor;
266
+ // Start from the cursor when specified and a cursor can be found.
267
+ if (fromCursor &amp;&amp; (cursor = select.cursorPos(this.editor.container))) {
268
+ this.line = cursor.node;
269
+ this.offset = cursor.offset;
270
+ }
271
+ else {
272
+ this.line = null;
273
+ this.offset = 0;
274
+ }
275
+ this.valid = !!string;
276
+
277
+ // Create a matcher function based on the kind of string we have.
278
+ var target = string.split("\n"), self = this;;
279
+ this.matches = (target.length == 1) ?
280
+ // For one-line strings, searching can be done simply by calling
281
+ // indexOf on the current line.
282
+ function() {
283
+ var match = cleanText(self.history.textAfter(self.line).slice(self.offset)).indexOf(string);
284
+ if (match > -1)
285
+ return {from: {node: self.line, offset: self.offset + match},
286
+ to: {node: self.line, offset: self.offset + match + string.length}};
287
+ } :
288
+ // Multi-line strings require internal iteration over lines, and
289
+ // some clunky checks to make sure the first match ends at the
290
+ // end of the line and the last match starts at the start.
291
+ function() {
292
+ var firstLine = cleanText(self.history.textAfter(self.line).slice(self.offset));
293
+ var match = firstLine.lastIndexOf(target[0]);
294
+ if (match == -1 || match != firstLine.length - target[0].length)
295
+ return false;
296
+ var startOffset = self.offset + match;
297
+
298
+ var line = self.history.nodeAfter(self.line);
299
+ for (var i = 1; i &lt; target.length - 1; i++) {
300
+ if (cleanText(self.history.textAfter(line)) != target[i])
301
+ return false;
302
+ line = self.history.nodeAfter(line);
303
+ }
304
+
305
+ if (cleanText(self.history.textAfter(line)).indexOf(target[target.length - 1]) != 0)
306
+ return false;
307
+
308
+ return {from: {node: self.line, offset: startOffset},
309
+ to: {node: line, offset: target[target.length - 1].length}};
310
+ };
311
+ }
312
+
313
+ SearchCursor.prototype = {
314
+ findNext: function() {
315
+ if (!this.valid) return false;
316
+ this.atOccurrence = false;
317
+ var self = this;
318
+
319
+ // Go back to the start of the document if the current line is
320
+ // no longer in the DOM tree.
321
+ if (this.line &amp;&amp; !this.line.parentNode) {
322
+ this.line = null;
323
+ this.offset = 0;
324
+ }
325
+
326
+ // Set the cursor's position one character after the given
327
+ // position.
328
+ function saveAfter(pos) {
329
+ if (self.history.textAfter(pos.node).length &lt; pos.offset) {
330
+ self.line = pos.node;
331
+ self.offset = pos.offset + 1;
332
+ }
333
+ else {
334
+ self.line = self.history.nodeAfter(pos.node);
335
+ self.offset = 0;
336
+ }
337
+ }
338
+
339
+ while (true) {
340
+ var match = this.matches();
341
+ // Found the search string.
342
+ if (match) {
343
+ this.atOccurrence = match;
344
+ saveAfter(match.from);
345
+ return true;
346
+ }
347
+ this.line = this.history.nodeAfter(this.line);
348
+ this.offset = 0;
349
+ // End of document.
350
+ if (!this.line) {
351
+ this.valid = false;
352
+ return false;
353
+ }
354
+ }
355
+ },
356
+
357
+ select: function() {
358
+ if (this.atOccurrence) {
359
+ select.setCursorPos(this.editor.container, this.atOccurrence.from, this.atOccurrence.to);
360
+ select.scrollToCursor(this.editor.container);
361
+ }
362
+ },
363
+
364
+ replace: function(string) {
365
+ if (this.atOccurrence) {
366
+ var end = this.editor.replaceRange(this.atOccurrence.from, this.atOccurrence.to, string);
367
+ this.line = end.node;
368
+ this.offset = end.offset;
369
+ this.atOccurrence = false;
370
+ }
371
+ }
372
+ };
373
+
374
+ // The Editor object is the main inside-the-iframe interface.
375
+ function Editor(options) {
376
+ this.options = options;
377
+ window.indentUnit = options.indentUnit;
378
+ this.parent = parent;
379
+ this.doc = document;
380
+ var container = this.container = this.doc.body;
381
+ this.win = window;
382
+ this.history = new History(container, options.undoDepth, options.undoDelay,
383
+ this, options.onChange);
384
+ var self = this;
385
+
386
+ if (!Editor.Parser)
387
+ throw "No parser loaded.";
388
+ if (options.parserConfig &amp;&amp; Editor.Parser.configure)
389
+ Editor.Parser.configure(options.parserConfig);
390
+
391
+ if (!options.readOnly)
392
+ select.setCursorPos(container, {node: null, offset: 0});
393
+
394
+ this.dirty = [];
395
+ if (options.content)
396
+ this.importCode(options.content);
397
+ else // FF acts weird when the editable document is completely empty
398
+ container.appendChild(this.doc.createElement("BR"));
399
+
400
+ if (!options.readOnly) {
401
+ if (options.continuousScanning !== false) {
402
+ this.scanner = this.documentScanner(options.linesPerPass);
403
+ this.delayScanning();
404
+ }
405
+
406
+ function setEditable() {
407
+ // In IE, designMode frames can not run any scripts, so we use
408
+ // contentEditable instead.
409
+ if (document.body.contentEditable != undefined &amp;&amp; internetExplorer)
410
+ document.body.contentEditable = "true";
411
+ else
412
+ document.designMode = "on";
413
+
414
+ document.documentElement.style.borderWidth = "0";
415
+ if (!options.textWrapping)
416
+ container.style.whiteSpace = "nowrap";
417
+ }
418
+
419
+ // If setting the frame editable fails, try again when the user
420
+ // focus it (happens when the frame is not visible on
421
+ // initialisation, in Firefox).
422
+ try {
423
+ setEditable();
424
+ }
425
+ catch(e) {
426
+ var focusEvent = addEventHandler(document, "focus", function() {
427
+ focusEvent();
428
+ setEditable();
429
+ }, true);
430
+ }
431
+
432
+ addEventHandler(document, "keydown", method(this, "keyDown"));
433
+ addEventHandler(document, "keypress", method(this, "keyPress"));
434
+ addEventHandler(document, "keyup", method(this, "keyUp"));
435
+
436
+ function cursorActivity() {self.cursorActivity(false);}
437
+ addEventHandler(document.body, "mouseup", cursorActivity);
438
+ addEventHandler(document.body, "paste", function(event) {
439
+ cursorActivity();
440
+ if (internetExplorer) {
441
+ var text = null;
442
+ try {text = window.clipboardData.getData("Text");}catch(e){}
443
+ if (text != null) {
444
+ self.replaceSelection(text);
445
+ event.stop();
446
+ }
447
+ else {
448
+ var start = select.selectionTopNode(self.container, true),
449
+ start2 = start &amp;&amp; start.previousSibling;
450
+ setTimeout(function(){scrubPasted(self.container, start, start2);}, 0);
451
+ }
452
+ }
453
+ });
454
+ addEventHandler(document.body, "cut", cursorActivity);
455
+
456
+ if (this.options.autoMatchParens)
457
+ addEventHandler(document.body, "click", method(this, "scheduleParenBlink"));
458
+ }
459
+ }
460
+
461
+ function isSafeKey(code) {
462
+ return (code >= 16 &amp;&amp; code &lt;= 18) || // shift, control, alt
463
+ (code >= 33 &amp;&amp; code &lt;= 40); // arrows, home, end
464
+ }
465
+
466
+ Editor.prototype = {
467
+ // Import a piece of code into the editor.
468
+ importCode: function(code) {
469
+ this.history.push(null, null, asEditorLines(code));
470
+ this.history.reset();
471
+ },
472
+
473
+ // Extract the code from the editor.
474
+ getCode: function() {
475
+ if (!this.container.firstChild)
476
+ return "";
477
+
478
+ var accum = [];
479
+ select.markSelection(this.win);
480
+ forEach(traverseDOM(this.container.firstChild), method(accum, "push"));
481
+ webkitLastLineHack(this.container);
482
+ select.selectMarked();
483
+ return cleanText(accum.join(""));
484
+ },
485
+
486
+ checkLine: function(node) {
487
+ if (node === false || !(node == null || node.parentNode == this.container))
488
+ throw parent.CodeMirror.InvalidLineHandle;
489
+ },
490
+
491
+ cursorPosition: function(start) {
492
+ if (start == null) start = true;
493
+ var pos = select.cursorPos(this.container, start);
494
+ if (pos) return {line: pos.node, character: pos.offset};
495
+ else return {line: null, character: 0};
496
+ },
497
+
498
+ firstLine: function() {
499
+ return null;
500
+ },
501
+
502
+ lastLine: function() {
503
+ if (this.container.lastChild) return startOfLine(this.container.lastChild);
504
+ else return null;
505
+ },
506
+
507
+ nextLine: function(line) {
508
+ this.checkLine(line);
509
+ var end = endOfLine(line, this.container);
510
+ return end || false;
511
+ },
512
+
513
+ prevLine: function(line) {
514
+ this.checkLine(line);
515
+ if (line == null) return false;
516
+ return startOfLine(line.previousSibling);
517
+ },
518
+
519
+ selectLines: function(startLine, startOffset, endLine, endOffset) {
520
+ this.checkLine(startLine);
521
+ var start = {node: startLine, offset: startOffset}, end = null;
522
+ if (endOffset !== undefined) {
523
+ this.checkLine(endLine);
524
+ end = {node: endLine, offset: endOffset};
525
+ }
526
+ select.setCursorPos(this.container, start, end);
527
+ select.scrollToCursor(this.container);
528
+ },
529
+
530
+ lineContent: function(line) {
531
+ this.checkLine(line);
532
+ var accum = [];
533
+ for (line = line ? line.nextSibling : this.container.firstChild;
534
+ line &amp;&amp; line.nodeName != "BR"; line = line.nextSibling)
535
+ accum.push(nodeText(line));
536
+ return cleanText(accum.join(""));
537
+ },
538
+
539
+ setLineContent: function(line, content) {
540
+ this.history.commit();
541
+ this.replaceRange({node: line, offset: 0},
542
+ {node: line, offset: this.history.textAfter(line).length},
543
+ content);
544
+ this.addDirtyNode(line);
545
+ this.scheduleHighlight();
546
+ },
547
+
548
+ insertIntoLine: function(line, position, content) {
549
+ var before = null;
550
+ if (position == "end") {
551
+ before = endOfLine(line, this.container);
552
+ }
553
+ else {
554
+ for (var cur = line ? line.nextSibling : this.container.firstChild; cur; cur = cur.nextSibling) {
555
+ if (position == 0) {
556
+ before = cur;
557
+ break;
558
+ }
559
+ var text = (cur.innerText || cur.textContent || cur.nodeValue || "");
560
+ if (text.length > position) {
561
+ before = cur.nextSibling;
562
+ content = text.slice(0, position) + content + text.slice(position);
563
+ removeElement(cur);
564
+ break;
565
+ }
566
+ position -= text.length;
567
+ }
568
+ }
569
+
570
+ var lines = asEditorLines(content), doc = this.container.ownerDocument;
571
+ for (var i = 0; i &lt; lines.length; i++) {
572
+ if (i > 0) this.container.insertBefore(doc.createElement("BR"), before);
573
+ this.container.insertBefore(makePartSpan(lines[i], doc), before);
574
+ }
575
+ this.addDirtyNode(line);
576
+ this.scheduleHighlight();
577
+ },
578
+
579
+ // Retrieve the selected text.
580
+ selectedText: function() {
581
+ var h = this.history;
582
+ h.commit();
583
+
584
+ var start = select.cursorPos(this.container, true),
585
+ end = select.cursorPos(this.container, false);
586
+ if (!start || !end) return "";
587
+
588
+ if (start.node == end.node)
589
+ return h.textAfter(start.node).slice(start.offset, end.offset);
590
+
591
+ var text = [h.textAfter(start.node).slice(start.offset)];
592
+ for (pos = h.nodeAfter(start.node); pos != end.node; pos = h.nodeAfter(pos))
593
+ text.push(h.textAfter(pos));
594
+ text.push(h.textAfter(end.node).slice(0, end.offset));
595
+ return cleanText(text.join("\n"));
596
+ },
597
+
598
+ // Replace the selection with another piece of text.
599
+ replaceSelection: function(text) {
600
+ this.history.commit();
601
+ var start = select.cursorPos(this.container, true),
602
+ end = select.cursorPos(this.container, false);
603
+ if (!start || !end) return;
604
+
605
+ end = this.replaceRange(start, end, text);
606
+ select.setCursorPos(this.container, start, end);
607
+ },
608
+
609
+ replaceRange: function(from, to, text) {
610
+ var lines = asEditorLines(text);
611
+ lines[0] = this.history.textAfter(from.node).slice(0, from.offset) + lines[0];
612
+ var lastLine = lines[lines.length - 1];
613
+ lines[lines.length - 1] = lastLine + this.history.textAfter(to.node).slice(to.offset);
614
+ var end = this.history.nodeAfter(to.node);
615
+ this.history.push(from.node, end, lines);
616
+ return {node: this.history.nodeBefore(end),
617
+ offset: lastLine.length};
618
+ },
619
+
620
+ getSearchCursor: function(string, fromCursor) {
621
+ return new SearchCursor(this, string, fromCursor);
622
+ },
623
+
624
+ // Re-indent the whole buffer
625
+ reindent: function() {
626
+ if (this.container.firstChild)
627
+ this.indentRegion(null, this.container.lastChild);
628
+ },
629
+
630
+ grabKeys: function(eventHandler, filter) {
631
+ this.frozen = eventHandler;
632
+ this.keyFilter = filter;
633
+ },
634
+ ungrabKeys: function() {
635
+ this.frozen = "leave";
636
+ this.keyFilter = null;
637
+ },
638
+
639
+ // Intercept enter and tab, and assign their new functions.
640
+ keyDown: function(event) {
641
+ if (this.frozen == "leave") this.frozen = null;
642
+ if (this.frozen &amp;&amp; (!this.keyFilter || this.keyFilter(event.keyCode))) {
643
+ event.stop();
644
+ this.frozen(event);
645
+ return;
646
+ }
647
+
648
+ var code = event.keyCode;
649
+ // Don't scan when the user is typing.
650
+ this.delayScanning();
651
+ // Schedule a paren-highlight event, if configured.
652
+ if (this.options.autoMatchParens)
653
+ this.scheduleParenBlink();
654
+
655
+ if (code == 13) { // enter
656
+ if (event.ctrlKey) {
657
+ this.reparseBuffer();
658
+ }
659
+ else {
660
+ select.insertNewlineAtCursor(this.win);
661
+ this.indentAtCursor();
662
+ select.scrollToCursor(this.container);
663
+ }
664
+ event.stop();
665
+ }
666
+ else if (code == 9 &amp;&amp; this.options.tabMode != "default") { // tab
667
+ this.handleTab(!event.ctrlKey &amp;&amp; !event.shiftKey);
668
+ event.stop();
669
+ }
670
+ else if (code == 32 &amp;&amp; event.shiftKey &amp;&amp; this.options.tabMode == "default") { // space
671
+ this.handleTab(true);
672
+ event.stop();
673
+ }
674
+ else if ((code == 219 || code == 221) &amp;&amp; event.ctrlKey) {
675
+ this.blinkParens(event.shiftKey);
676
+ event.stop();
677
+ }
678
+ else if (event.metaKey &amp;&amp; (code == 37 || code == 39)) { // Meta-left/right
679
+ var cursor = select.selectionTopNode(this.container);
680
+ if (cursor === false || !this.container.firstChild) return;
681
+
682
+ if (code == 37) select.focusAfterNode(startOfLine(cursor), this.container);
683
+ else {
684
+ end = endOfLine(cursor, this.container);
685
+ select.focusAfterNode(end ? end.previousSibling : this.container.lastChild, this.container);
686
+ }
687
+ event.stop();
688
+ }
689
+ else if (event.ctrlKey || event.metaKey) {
690
+ if ((event.shiftKey &amp;&amp; code == 90) || code == 89) { // shift-Z, Y
691
+ select.scrollToNode(this.history.redo());
692
+ event.stop();
693
+ }
694
+ else if (code == 90 || code == 8) { // Z, backspace
695
+ select.scrollToNode(this.history.undo());
696
+ event.stop();
697
+ }
698
+ else if (code == 83 &amp;&amp; this.options.saveFunction) { // S
699
+ this.options.saveFunction();
700
+ event.stop();
701
+ }
702
+ }
703
+ },
704
+
705
+ // Check for characters that should re-indent the current line,
706
+ // and prevent Opera from handling enter and tab anyway.
707
+ keyPress: function(event) {
708
+ var electric = /indent|default/.test(this.options.tabMode) &amp;&amp; Editor.Parser.electricChars;
709
+ // Hack for Opera, and Firefox on OS X, in which stopping a
710
+ // keydown event does not prevent the associated keypress event
711
+ // from happening, so we have to cancel enter and tab again
712
+ // here.
713
+ if ((this.frozen &amp;&amp; (!this.keyFilter || this.keyFilter(event.keyCode))) ||
714
+ event.code == 13 || (event.code == 9 &amp;&amp; this.options.tabMode != "default") ||
715
+ (event.keyCode == 32 &amp;&amp; event.shiftKey &amp;&amp; this.options.tabMode == "default"))
716
+ event.stop();
717
+ else if (electric &amp;&amp; electric.indexOf(event.character) != -1)
718
+ this.parent.setTimeout(method(this, "indentAtCursor"), 0);
719
+ },
720
+
721
+ // Mark the node at the cursor dirty when a non-safe key is
722
+ // released.
723
+ keyUp: function(event) {
724
+ this.cursorActivity(isSafeKey(event.keyCode));
725
+ },
726
+
727
+ // Indent the line following a given &lt;br>, or null for the first
728
+ // line. If given a &lt;br> element, this must have been highlighted
729
+ // so that it has an indentation method. Returns the whitespace
730
+ // element that has been modified or created (if any).
731
+ indentLineAfter: function(start, direction) {
732
+ // whiteSpace is the whitespace span at the start of the line,
733
+ // or null if there is no such node.
734
+ var whiteSpace = start ? start.nextSibling : this.container.firstChild;
735
+ if (whiteSpace &amp;&amp; !hasClass(whiteSpace, "whitespace"))
736
+ whiteSpace = null;
737
+
738
+ // Sometimes the start of the line can influence the correct
739
+ // indentation, so we retrieve it.
740
+ var firstText = whiteSpace ? whiteSpace.nextSibling : (start ? start.nextSibling : this.container.firstChild);
741
+ var nextChars = (start &amp;&amp; firstText &amp;&amp; firstText.currentText) ? firstText.currentText : "";
742
+
743
+ // Ask the lexical context for the correct indentation, and
744
+ // compute how much this differs from the current indentation.
745
+ var newIndent = 0, curIndent = whiteSpace ? whiteSpace.currentText.length : 0;
746
+ if (direction != null &amp;&amp; this.options.tabMode == "shift")
747
+ newIndent = direction ? curIndent + indentUnit : Math.max(0, curIndent - indentUnit)
748
+ else if (start)
749
+ newIndent = start.indentation(nextChars, curIndent, direction);
750
+ else if (Editor.Parser.firstIndentation)
751
+ newIndent = Editor.Parser.firstIndentation(nextChars, curIndent, direction);
752
+ var indentDiff = newIndent - curIndent;
753
+
754
+ // If there is too much, this is just a matter of shrinking a span.
755
+ if (indentDiff &lt; 0) {
756
+ if (newIndent == 0) {
757
+ if (firstText) select.snapshotMove(whiteSpace.firstChild, firstText.firstChild, 0);
758
+ removeElement(whiteSpace);
759
+ whiteSpace = null;
760
+ }
761
+ else {
762
+ select.snapshotMove(whiteSpace.firstChild, whiteSpace.firstChild, indentDiff, true);
763
+ whiteSpace.currentText = makeWhiteSpace(newIndent);
764
+ whiteSpace.firstChild.nodeValue = whiteSpace.currentText;
765
+ }
766
+ }
767
+ // Not enough...
768
+ else if (indentDiff > 0) {
769
+ // If there is whitespace, we grow it.
770
+ if (whiteSpace) {
771
+ whiteSpace.currentText = makeWhiteSpace(newIndent);
772
+ whiteSpace.firstChild.nodeValue = whiteSpace.currentText;
773
+ }
774
+ // Otherwise, we have to add a new whitespace node.
775
+ else {
776
+ whiteSpace = makePartSpan(makeWhiteSpace(newIndent), this.doc);
777
+ whiteSpace.className = "whitespace";
778
+ if (start) insertAfter(whiteSpace, start);
779
+ else this.container.insertBefore(whiteSpace, this.container.firstChild);
780
+ }
781
+ if (firstText) select.snapshotMove(firstText.firstChild, whiteSpace.firstChild, curIndent, false, true);
782
+ }
783
+ if (indentDiff != 0) this.addDirtyNode(start);
784
+ return whiteSpace;
785
+ },
786
+
787
+ // Re-highlight the selected part of the document.
788
+ highlightAtCursor: function() {
789
+ var pos = select.selectionTopNode(this.container, true);
790
+ var to = select.selectionTopNode(this.container, false);
791
+ if (pos === false || to === false) return;
792
+
793
+ select.markSelection(this.win);
794
+ if (this.highlight(pos, endOfLine(to, this.container), true, 20) === false)
795
+ return false;
796
+ select.selectMarked();
797
+ return true;
798
+ },
799
+
800
+ // When tab is pressed with text selected, the whole selection is
801
+ // re-indented, when nothing is selected, the line with the cursor
802
+ // is re-indented.
803
+ handleTab: function(direction) {
804
+ if (this.options.tabMode == "spaces") {
805
+ select.insertTabAtCursor(this.win);
806
+ }
807
+ else if (!select.somethingSelected(this.win)) {
808
+ this.indentAtCursor(direction);
809
+ }
810
+ else {
811
+ var start = select.selectionTopNode(this.container, true),
812
+ end = select.selectionTopNode(this.container, false);
813
+ if (start === false || end === false) return;
814
+ this.indentRegion(start, end, direction);
815
+ }
816
+ },
817
+
818
+ // Delay (or initiate) the next paren blink event.
819
+ scheduleParenBlink: function() {
820
+ if (this.parenEvent) this.parent.clearTimeout(this.parenEvent);
821
+ var self = this;
822
+ this.parenEvent = this.parent.setTimeout(function(){self.blinkParens();}, 300);
823
+ },
824
+
825
+ // Take the token before the cursor. If it contains a character in
826
+ // '()[]{}', search for the matching paren/brace/bracket, and
827
+ // highlight them in green for a moment, or red if no proper match
828
+ // was found.
829
+ blinkParens: function(jump) {
830
+ // Clear the event property.
831
+ if (this.parenEvent) this.parent.clearTimeout(this.parenEvent);
832
+ this.parenEvent = null;
833
+
834
+ // Extract a 'paren' from a piece of text.
835
+ function paren(node) {
836
+ if (node.currentText) {
837
+ var match = node.currentText.match(/^[\s\u00a0]*([\(\)\[\]{}])[\s\u00a0]*$/);
838
+ return match &amp;&amp; match[1];
839
+ }
840
+ }
841
+ // Determine the direction a paren is facing.
842
+ function forward(ch) {
843
+ return /[\(\[\{]/.test(ch);
844
+ }
845
+
846
+ var ch, self = this, cursor = select.selectionTopNode(this.container, true);
847
+ if (!cursor || !this.highlightAtCursor()) return;
848
+ cursor = select.selectionTopNode(this.container, true);
849
+ if (!(cursor &amp;&amp; ((ch = paren(cursor)) || (cursor = cursor.nextSibling) &amp;&amp; (ch = paren(cursor)))))
850
+ return;
851
+ // We only look for tokens with the same className.
852
+ var className = cursor.className, dir = forward(ch), match = matching[ch];
853
+
854
+ // Since parts of the document might not have been properly
855
+ // highlighted, and it is hard to know in advance which part we
856
+ // have to scan, we just try, and when we find dirty nodes we
857
+ // abort, parse them, and re-try.
858
+ function tryFindMatch() {
859
+ var stack = [], ch, ok = true;;
860
+ for (var runner = cursor; runner; runner = dir ? runner.nextSibling : runner.previousSibling) {
861
+ if (runner.className == className &amp;&amp; runner.nodeName == "SPAN" &amp;&amp; (ch = paren(runner))) {
862
+ if (forward(ch) == dir)
863
+ stack.push(ch);
864
+ else if (!stack.length)
865
+ ok = false;
866
+ else if (stack.pop() != matching[ch])
867
+ ok = false;
868
+ if (!stack.length) break;
869
+ }
870
+ else if (runner.dirty || runner.nodeName != "SPAN" &amp;&amp; runner.nodeName != "BR") {
871
+ return {node: runner, status: "dirty"};
872
+ }
873
+ }
874
+ return {node: runner, status: runner &amp;&amp; ok};
875
+ }
876
+ // Temporarily give the relevant nodes a colour.
877
+ function blink(node, ok) {
878
+ node.style.fontWeight = "bold";
879
+ node.style.color = ok ? "#8F8" : "#F88";
880
+ self.parent.setTimeout(function() {node.style.fontWeight = ""; node.style.color = "";}, 500);
881
+ }
882
+
883
+ while (true) {
884
+ var found = tryFindMatch();
885
+ if (found.status == "dirty") {
886
+ this.highlight(found.node, 1);
887
+ // Needed because in some corner cases a highlight does not
888
+ // reach a node.
889
+ found.node.dirty = false;
890
+ continue;
891
+ }
892
+ else {
893
+ blink(cursor, found.status);
894
+ if (found.node) {
895
+ blink(found.node, found.status);
896
+ if (jump) select.focusAfterNode(found.node.previousSibling, this.container);
897
+ }
898
+ break;
899
+ }
900
+ }
901
+ },
902
+
903
+ // Adjust the amount of whitespace at the start of the line that
904
+ // the cursor is on so that it is indented properly.
905
+ indentAtCursor: function(direction) {
906
+ if (!this.container.firstChild) return;
907
+ // The line has to have up-to-date lexical information, so we
908
+ // highlight it first.
909
+ if (!this.highlightAtCursor()) return;
910
+ var cursor = select.selectionTopNode(this.container, false);
911
+ // If we couldn't determine the place of the cursor,
912
+ // there's nothing to indent.
913
+ if (cursor === false)
914
+ return;
915
+ var lineStart = startOfLine(cursor);
916
+ var whiteSpace = this.indentLineAfter(lineStart, direction);
917
+ if (cursor == lineStart &amp;&amp; whiteSpace)
918
+ cursor = whiteSpace;
919
+ // This means the indentation has probably messed up the cursor.
920
+ if (cursor == whiteSpace)
921
+ select.focusAfterNode(cursor, this.container);
922
+ },
923
+
924
+ // Indent all lines whose start falls inside of the current
925
+ // selection.
926
+ indentRegion: function(start, end, direction) {
927
+ var current = (start = startOfLine(start)), before = start &amp;&amp; startOfLine(start.previousSibling);
928
+ if (end.nodeName != "BR") end = endOfLine(end, this.container);
929
+
930
+ do {
931
+ if (current) this.highlight(before, current, true);
932
+ this.indentLineAfter(current, direction);
933
+ before = current;
934
+ current = endOfLine(current, this.container);
935
+ } while (current != end);
936
+ select.setCursorPos(this.container, {node: start, offset: 0}, {node: end, offset: 0});
937
+ },
938
+
939
+ // Find the node that the cursor is in, mark it as dirty, and make
940
+ // sure a highlight pass is scheduled.
941
+ cursorActivity: function(safe) {
942
+ if (internetExplorer) {
943
+ this.container.createTextRange().execCommand("unlink");
944
+ this.selectionSnapshot = select.selectionCoords(this.win);
945
+ }
946
+
947
+ var activity = this.options.cursorActivity;
948
+ if (!safe || activity) {
949
+ var cursor = select.selectionTopNode(this.container, false);
950
+ if (cursor === false || !this.container.firstChild) return;
951
+ cursor = cursor || this.container.firstChild;
952
+ if (activity) activity(cursor);
953
+ if (!safe) {
954
+ this.scheduleHighlight();
955
+ this.addDirtyNode(cursor);
956
+ }
957
+ }
958
+ },
959
+
960
+ reparseBuffer: function() {
961
+ forEach(this.container.childNodes, function(node) {node.dirty = true;});
962
+ if (this.container.firstChild)
963
+ this.addDirtyNode(this.container.firstChild);
964
+ },
965
+
966
+ // Add a node to the set of dirty nodes, if it isn't already in
967
+ // there.
968
+ addDirtyNode: function(node) {
969
+ node = node || this.container.firstChild;
970
+ if (!node) return;
971
+
972
+ for (var i = 0; i &lt; this.dirty.length; i++)
973
+ if (this.dirty[i] == node) return;
974
+
975
+ if (node.nodeType != 3)
976
+ node.dirty = true;
977
+ this.dirty.push(node);
978
+ },
979
+
980
+ // Cause a highlight pass to happen in options.passDelay
981
+ // milliseconds. Clear the existing timeout, if one exists. This
982
+ // way, the passes do not happen while the user is typing, and
983
+ // should as unobtrusive as possible.
984
+ scheduleHighlight: function() {
985
+ // Timeouts are routed through the parent window, because on
986
+ // some browsers designMode windows do not fire timeouts.
987
+ var self = this;
988
+ this.parent.clearTimeout(this.highlightTimeout);
989
+ this.highlightTimeout = this.parent.setTimeout(function(){self.highlightDirty();}, this.options.passDelay);
990
+ },
991
+
992
+ // Fetch one dirty node, and remove it from the dirty set.
993
+ getDirtyNode: function() {
994
+ while (this.dirty.length > 0) {
995
+ var found = this.dirty.pop();
996
+ // IE8 sometimes throws an unexplainable 'invalid argument'
997
+ // exception for found.parentNode
998
+ try {
999
+ // If the node has been coloured in the meantime, or is no
1000
+ // longer in the document, it should not be returned.
1001
+ while (found &amp;&amp; found.parentNode != this.container)
1002
+ found = found.parentNode
1003
+ if (found &amp;&amp; (found.dirty || found.nodeType == 3))
1004
+ return found;
1005
+ } catch (e) {}
1006
+ }
1007
+ return null;
1008
+ },
1009
+
1010
+ // Pick dirty nodes, and highlight them, until
1011
+ // options.linesPerPass lines have been highlighted. The highlight
1012
+ // method will continue to next lines as long as it finds dirty
1013
+ // nodes. It returns an object indicating the amount of lines
1014
+ // left, and information about the place where it stopped. If
1015
+ // there are dirty nodes left after this function has spent all
1016
+ // its lines, it shedules another highlight to finish the job.
1017
+ highlightDirty: function(force) {
1018
+ // Prevent FF from raising an error when it is firing timeouts
1019
+ // on a page that's no longer loaded.
1020
+ if (!window.select) return;
1021
+
1022
+ var lines = force ? Infinity : this.options.linesPerPass;
1023
+ if (!this.options.readOnly) select.markSelection(this.win);
1024
+ var start;
1025
+ while (lines > 0 &amp;&amp; (start = this.getDirtyNode())){
1026
+ var result = this.highlight(start, lines);
1027
+ if (result) {
1028
+ lines = result.left;
1029
+ if (result.node &amp;&amp; result.dirty)
1030
+ this.addDirtyNode(result.node);
1031
+ }
1032
+ }
1033
+ if (!this.options.readOnly) select.selectMarked();
1034
+ if (start)
1035
+ this.scheduleHighlight();
1036
+ return this.dirty.length == 0;
1037
+ },
1038
+
1039
+ // Creates a function that, when called through a timeout, will
1040
+ // continuously re-parse the document.
1041
+ documentScanner: function(linesPer) {
1042
+ var self = this, pos = null;
1043
+ return function() {
1044
+ // If the current node is no longer in the document... oh
1045
+ // well, we start over.
1046
+ if (pos &amp;&amp; pos.parentNode != self.container)
1047
+ pos = null;
1048
+ select.markSelection(self.win);
1049
+ var result = self.highlight(pos, linesPer, true);
1050
+ select.selectMarked();
1051
+ var newPos = result ? (result.node &amp;&amp; result.node.nextSibling) : null;
1052
+ pos = (pos == newPos) ? null : newPos;
1053
+ self.delayScanning();
1054
+ };
1055
+ },
1056
+
1057
+ // Starts the continuous scanning process for this document after
1058
+ // a given interval.
1059
+ delayScanning: function() {
1060
+ if (this.scanner) {
1061
+ this.parent.clearTimeout(this.documentScan);
1062
+ this.documentScan = this.parent.setTimeout(this.scanner, this.options.continuousScanning);
1063
+ }
1064
+ },
1065
+
1066
+ // The function that does the actual highlighting/colouring (with
1067
+ // help from the parser and the DOM normalizer). Its interface is
1068
+ // rather overcomplicated, because it is used in different
1069
+ // situations: ensuring that a certain line is highlighted, or
1070
+ // highlighting up to X lines starting from a certain point. The
1071
+ // 'from' argument gives the node at which it should start. If
1072
+ // this is null, it will start at the beginning of the document.
1073
+ // When a number of lines is given with the 'target' argument, it
1074
+ // will highlight no more than that amount of lines. If this
1075
+ // argument holds a DOM node, it will highlight until it reaches
1076
+ // that node. If at any time it comes across a 'clean' line (no
1077
+ // dirty nodes), it will stop, except when 'cleanLines' is true.
1078
+ highlight: function(from, target, cleanLines, maxBacktrack){
1079
+ var container = this.container, self = this, active = this.options.activeTokens;
1080
+ var lines = (typeof target == "number" ? target : null);
1081
+
1082
+ if (!container.firstChild)
1083
+ return;
1084
+ // Backtrack to the first node before from that has a partial
1085
+ // parse stored.
1086
+ while (from &amp;&amp; (!from.parserFromHere || from.dirty)) {
1087
+ from = from.previousSibling;
1088
+ if (maxBacktrack != null &amp;&amp; from.nodeName == "BR" &amp;&amp; (--maxBacktrack) &lt; 0)
1089
+ return false;
1090
+ }
1091
+ // If we are at the end of the document, do nothing.
1092
+ if (from &amp;&amp; !from.nextSibling)
1093
+ return;
1094
+
1095
+ // Check whether a part (&lt;span> node) and the corresponding token
1096
+ // match.
1097
+ function correctPart(token, part){
1098
+ return !part.reduced &amp;&amp; part.currentText == token.value &amp;&amp; part.className == token.style;
1099
+ }
1100
+ // Shorten the text associated with a part by chopping off
1101
+ // characters from the front. Note that only the currentText
1102
+ // property gets changed. For efficiency reasons, we leave the
1103
+ // nodeValue alone -- we set the reduced flag to indicate that
1104
+ // this part must be replaced.
1105
+ function shortenPart(part, minus){
1106
+ part.currentText = part.currentText.substring(minus);
1107
+ part.reduced = true;
1108
+ }
1109
+ // Create a part corresponding to a given token.
1110
+ function tokenPart(token){
1111
+ var part = makePartSpan(token.value, self.doc);
1112
+ part.className = token.style;
1113
+ return part;
1114
+ }
1115
+
1116
+ function maybeTouch(node) {
1117
+ if (node) {
1118
+ if (node.nextSibling != node.oldNextSibling) {
1119
+ self.history.touch(node);
1120
+ node.oldNextSibling = node.nextSibling;
1121
+ }
1122
+ }
1123
+ else {
1124
+ if (self.container.firstChild != self.container.oldFirstChild) {
1125
+ self.history.touch(node);
1126
+ self.container.oldFirstChild = self.container.firstChild;
1127
+ }
1128
+ }
1129
+ }
1130
+
1131
+ // Get the token stream. If from is null, we start with a new
1132
+ // parser from the start of the frame, otherwise a partial parse
1133
+ // is resumed.
1134
+ var traversal = traverseDOM(from ? from.nextSibling : container.firstChild),
1135
+ stream = stringStream(traversal),
1136
+ parsed = from ? from.parserFromHere(stream) : Editor.Parser.make(stream);
1137
+
1138
+ // parts is an interface to make it possible to 'delay' fetching
1139
+ // the next DOM node until we are completely done with the one
1140
+ // before it. This is necessary because often the next node is
1141
+ // not yet available when we want to proceed past the current
1142
+ // one.
1143
+ var parts = {
1144
+ current: null,
1145
+ // Fetch current node.
1146
+ get: function(){
1147
+ if (!this.current)
1148
+ this.current = traversal.nodes.shift();
1149
+ return this.current;
1150
+ },
1151
+ // Advance to the next part (do not fetch it yet).
1152
+ next: function(){
1153
+ this.current = null;
1154
+ },
1155
+ // Remove the current part from the DOM tree, and move to the
1156
+ // next.
1157
+ remove: function(){
1158
+ container.removeChild(this.get());
1159
+ this.current = null;
1160
+ },
1161
+ // Advance to the next part that is not empty, discarding empty
1162
+ // parts.
1163
+ getNonEmpty: function(){
1164
+ var part = this.get();
1165
+ // Allow empty nodes when they are alone on a line, needed
1166
+ // for the FF cursor bug workaround (see select.js,
1167
+ // insertNewlineAtCursor).
1168
+ while (part &amp;&amp; part.nodeName == "SPAN" &amp;&amp; part.currentText == "") {
1169
+ var old = part;
1170
+ this.remove();
1171
+ part = this.get();
1172
+ // Adjust selection information, if any. See select.js for details.
1173
+ select.snapshotMove(old.firstChild, part &amp;&amp; (part.firstChild || part), 0);
1174
+ }
1175
+ return part;
1176
+ }
1177
+ };
1178
+
1179
+ var lineDirty = false, prevLineDirty = true, lineNodes = 0;
1180
+
1181
+ // This forEach loops over the tokens from the parsed stream, and
1182
+ // at the same time uses the parts object to proceed through the
1183
+ // corresponding DOM nodes.
1184
+ forEach(parsed, function(token){
1185
+ var part = parts.getNonEmpty();
1186
+
1187
+ if (token.value == "\n"){
1188
+ // The idea of the two streams actually staying synchronized
1189
+ // is such a long shot that we explicitly check.
1190
+ if (part.nodeName != "BR")
1191
+ throw "Parser out of sync. Expected BR.";
1192
+
1193
+ if (part.dirty || !part.indentation) lineDirty = true;
1194
+ maybeTouch(from);
1195
+ from = part;
1196
+
1197
+ // Every &lt;br> gets a copy of the parser state and a lexical
1198
+ // context assigned to it. The first is used to be able to
1199
+ // later resume parsing from this point, the second is used
1200
+ // for indentation.
1201
+ part.parserFromHere = parsed.copy();
1202
+ part.indentation = token.indentation;
1203
+ part.dirty = false;
1204
+
1205
+ // If the target argument wasn't an integer, go at least
1206
+ // until that node.
1207
+ if (lines == null &amp;&amp; part == target) throw StopIteration;
1208
+
1209
+ // A clean line with more than one node means we are done.
1210
+ // Throwing a StopIteration is the way to break out of a
1211
+ // MochiKit forEach loop.
1212
+ if ((lines != null &amp;&amp; --lines &lt;= 0) || (!lineDirty &amp;&amp; !prevLineDirty &amp;&amp; lineNodes > 1 &amp;&amp; !cleanLines))
1213
+ throw StopIteration;
1214
+ prevLineDirty = lineDirty; lineDirty = false; lineNodes = 0;
1215
+ parts.next();
1216
+ }
1217
+ else {
1218
+ if (part.nodeName != "SPAN")
1219
+ throw "Parser out of sync. Expected SPAN.";
1220
+ if (part.dirty)
1221
+ lineDirty = true;
1222
+ lineNodes++;
1223
+
1224
+ // If the part matches the token, we can leave it alone.
1225
+ if (correctPart(token, part)){
1226
+ part.dirty = false;
1227
+ parts.next();
1228
+ }
1229
+ // Otherwise, we have to fix it.
1230
+ else {
1231
+ lineDirty = true;
1232
+ // Insert the correct part.
1233
+ var newPart = tokenPart(token);
1234
+ container.insertBefore(newPart, part);
1235
+ if (active) active(newPart, token, self);
1236
+ var tokensize = token.value.length;
1237
+ var offset = 0;
1238
+ // Eat up parts until the text for this token has been
1239
+ // removed, adjusting the stored selection info (see
1240
+ // select.js) in the process.
1241
+ while (tokensize > 0) {
1242
+ part = parts.get();
1243
+ var partsize = part.currentText.length;
1244
+ select.snapshotReplaceNode(part.firstChild, newPart.firstChild, tokensize, offset);
1245
+ if (partsize > tokensize){
1246
+ shortenPart(part, tokensize);
1247
+ tokensize = 0;
1248
+ }
1249
+ else {
1250
+ tokensize -= partsize;
1251
+ offset += partsize;
1252
+ parts.remove();
1253
+ }
1254
+ }
1255
+ }
1256
+ }
1257
+ });
1258
+ maybeTouch(from);
1259
+ webkitLastLineHack(this.container);
1260
+
1261
+ // The function returns some status information that is used by
1262
+ // hightlightDirty to determine whether and where it has to
1263
+ // continue.
1264
+ return {left: lines,
1265
+ node: parts.getNonEmpty(),
1266
+ dirty: lineDirty};
1267
+ }
1268
+ };
1269
+
1270
+ return Editor;
1271
+ })();
1272
+
1273
+ addEventHandler(window, "load", function() {
1274
+ var CodeMirror = window.frameElement.CodeMirror;
1275
+ CodeMirror.editor = new Editor(CodeMirror.options);
1276
+ this.parent.setTimeout(method(CodeMirror, "init"), 0);
1277
+ });
1278
+ </textarea>
1279
+ </div>
1280
+
1281
+ <script type="text/javascript">
1282
+ var textarea = document.getElementById('code');
1283
+ var editor = new CodeMirror(CodeMirror.replace(textarea), {
1284
+ height: "750px",
1285
+ width: "100%",
1286
+ content: textarea.value,
1287
+ parserfile: ["tokenizejavascript.js", "parsejavascript.js"],
1288
+ stylesheet: "css/jscolors.css",
1289
+ path: "js/",
1290
+ autoMatchParens: true,
1291
+ initCallback: function(editor){editor.win.document.body.lastChild.scrollIntoView();}
1292
+ });
1293
+ </script>
1294
+
1295
+ </body>
1296
+ </html>