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.
- data/README.md +3 -0
- data/app/controllers/erp_app/application_controller.rb +1 -0
- data/app/controllers/erp_app/desktop/base_controller.rb +1 -1
- data/app/controllers/erp_app/desktop/configuration_management/base_controller.rb +180 -0
- data/app/controllers/erp_app/desktop/configuration_management/options_controller.rb +55 -0
- data/app/controllers/erp_app/desktop/configuration_management/types_controller.rb +129 -0
- data/app/controllers/erp_app/desktop/control_panel/application_management_controller.rb +1 -1
- data/app/controllers/erp_app/desktop/control_panel/desktop_management_controller.rb +1 -1
- data/app/controllers/erp_app/desktop/control_panel/profile_management_controller.rb +14 -16
- data/app/controllers/erp_app/desktop/file_manager/base_controller.rb +5 -7
- data/app/controllers/erp_app/desktop/system_management/application_role_management_controller.rb +1 -1
- data/app/controllers/erp_app/desktop/user_management/application_management_controller.rb +9 -9
- data/app/controllers/erp_app/desktop/user_management/base_controller.rb +1 -1
- data/app/controllers/erp_app/desktop/user_management/role_management_controller.rb +13 -8
- data/app/controllers/erp_app/mobile/base_controller.rb +21 -0
- data/app/controllers/erp_app/mobile/login_controller.rb +11 -0
- data/app/controllers/erp_app/mobile/user_management/base_controller.rb +24 -0
- data/app/controllers/erp_app/organizer/base_controller.rb +6 -5
- data/app/controllers/erp_app/organizer/crm/base_controller.rb +117 -15
- data/app/controllers/erp_app/public_controller.rb +73 -6
- data/app/controllers/erp_app/shared/configuration_controller.rb +53 -0
- data/app/controllers/erp_app/widget_proxy_controller.rb +1 -1
- data/app/models/app_container.rb +8 -2
- data/app/models/application.rb +1 -1
- data/app/models/configuration.rb +129 -0
- data/app/models/configuration_item.rb +45 -0
- data/app/models/configuration_item_type.rb +96 -0
- data/app/models/configuration_item_type_configuration_option.rb +10 -0
- data/app/models/configuration_option.rb +20 -0
- data/app/models/desktop.rb +7 -10
- data/app/models/extensions/user.rb +41 -2
- data/app/models/mobile.rb +10 -0
- data/app/models/mobile_application.rb +6 -0
- data/app/models/organizer.rb +3 -6
- data/app/models/preference.rb +2 -2
- data/app/models/preference_type.rb +1 -1
- data/app/models/user_preference.rb +3 -3
- data/app/models/valid_configuration.rb +4 -0
- data/app/models/valid_preference_type.rb +2 -2
- data/app/observers/user_app_container_observer.rb +7 -2
- data/app/views/erp_app/desktop/base/index.erb +25 -32
- data/app/views/erp_app/login/index.erb +3 -3
- data/app/views/erp_app/mobile/base/index.erb +37 -0
- data/app/views/erp_app/mobile/login/index.erb +22 -0
- data/app/views/erp_app/mobile/user_management/base/index.html.erb +28 -0
- data/app/views/erp_app/organizer/base/get_party_details.erb +19 -0
- data/app/views/erp_app/organizer/base/index.erb +20 -23
- data/app/views/erp_app/widget_proxy/index.erb +1 -1
- data/config/routes.rb +22 -0
- data/db/data_migrations/20110728201729_erp_app_setup.rb +3 -1
- data/db/data_migrations/20120229160222_add_userinfo_widget.rb +30 -0
- data/db/data_migrations/20120405193721_create_party_and_role_type_for_communication_events.rb +10 -0
- data/db/data_migrations/20120411180756_create_user_management_mobile_application.rb +18 -0
- data/db/data_migrations/20120413000515_create_mobile_containers.rb +13 -0
- data/db/data_migrations/20120418164215_create_configuration_management_desktop_application.rb +22 -0
- data/db/data_migrations/upgrade/20120213182651_add_true_north_background.rb +16 -0
- data/db/migrate/20080805000096_base_app_framework.rb +125 -33
- data/db/migrate/20120316152543_add_is_template_to_configurations.rb +5 -0
- data/db/migrate/20120320182253_update_app_container.rb +20 -0
- data/db/migrate/20120325123722_remove_file_system_loader_column.rb +9 -0
- data/db/migrate/20120411151848_add_base_url_to_application.rb +5 -0
- data/db/migrate/20120427000446_add_user_defined_to_config_option.rb +17 -0
- data/db/migrate/20120429130430_update_configuration_join_tables.rb +16 -0
- data/db/migrate/upgrade/20120208201934_add_configuration_models.rb +109 -0
- data/db/migrate/upgrade/20120209194251_add_user_defined_to_config_type.rb +5 -0
- data/db/migrate/upgrade/20120210172929_add_config_types_to_configs.rb +23 -0
- data/lib/erp_app/application_resource_loader/base_loader.rb +17 -0
- data/lib/erp_app/application_resource_loader/{file_system_loader.rb → desktop_organizer_loader.rb} +15 -29
- data/lib/erp_app/application_resource_loader/mobile_loader.rb +46 -0
- data/lib/erp_app/application_resource_loader/shared_loader.rb +26 -0
- data/lib/erp_app/application_resource_loader.rb +4 -0
- data/lib/erp_app/config.rb +2 -2
- data/lib/erp_app/engine.rb +7 -4
- data/lib/erp_app/extensions/railties/action_view/base.rb +12 -0
- data/lib/erp_app/extensions/railties/action_view/helpers/active_ext_helper.rb +17 -0
- data/lib/erp_app/extensions/railties/action_view/helpers/extjs_helper.rb +45 -0
- data/lib/erp_app/extensions/railties/action_view/helpers/include_helper.rb +134 -0
- data/lib/erp_app/extensions/railties/action_view/helpers/tag_helper.rb +27 -0
- data/lib/erp_app/extensions.rb +1 -2
- data/lib/erp_app/version.rb +8 -1
- data/lib/erp_app/widgets/base.rb +50 -43
- data/lib/erp_app/widgets/javascript_loader.rb +13 -20
- data/lib/erp_app/widgets/loader.rb +126 -0
- data/lib/erp_app/widgets/railties/action_view/base.rb +8 -0
- data/lib/erp_app/widgets/railties/action_view/helpers/widget_helper.rb +57 -0
- data/lib/erp_app/widgets.rb +2 -2
- data/lib/erp_app.rb +3 -1
- data/lib/generators/cms_widget/templates/engine/engine_template.rb +0 -4
- data/lib/generators/cms_widget/templates/javascript/base.js.erb +2 -1
- data/lib/generators/desktop_application/USAGE +1 -1
- data/lib/generators/desktop_application/templates/controllers/controller_template.rb +7 -5
- data/lib/generators/desktop_application/templates/migrate/migration_template.rb +0 -4
- data/lib/generators/mobile_application/USAGE +24 -0
- data/lib/generators/mobile_application/mobile_application_generator.rb +27 -0
- data/lib/generators/mobile_application/templates/INSTALL +25 -0
- data/lib/generators/mobile_application/templates/controllers/controller_template.rb +11 -0
- data/lib/generators/mobile_application/templates/migrate/migration_template.rb +14 -0
- data/lib/generators/mobile_application/templates/public/app.js.erb +35 -0
- data/lib/generators/mobile_application/templates/views/index.html.erb +28 -0
- data/lib/generators/organizer_application/templates/controllers/controller_template.rb +9 -11
- data/public/images/icons/apartment/apartment_16x16.png +0 -0
- data/public/images/icons/apartment/apartment_24x24.png +0 -0
- data/public/images/icons/apartment/apartment_32x32.png +0 -0
- data/public/images/icons/apartment/apartment_48x48.png +0 -0
- data/public/images/wallpaper/truenorth.png +0 -0
- data/public/javascripts/erp_app/authentication/widget_manager.js +23 -2
- data/public/javascripts/erp_app/ckeditor/ckeditor.js +113 -111
- data/public/javascripts/erp_app/ckeditor/contents.css +2 -2
- data/public/javascripts/erp_app/ckeditor/lang/_translationstatus.txt +59 -59
- data/public/javascripts/erp_app/ckeditor/lang/af.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ar.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/bg.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/bn.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/bs.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ca.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/cs.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/cy.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/da.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/de.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/el.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/en-au.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/en-ca.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/en-gb.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/en.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/eo.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/es.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/et.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/eu.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/fa.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/fi.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/fo.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/fr-ca.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/fr.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/gl.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/gu.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/he.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/hi.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/hr.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/hu.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/is.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/it.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ja.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ka.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/km.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ko.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/lt.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/lv.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/mn.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ms.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/nb.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/nl.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/no.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/pl.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/pt-br.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/pt.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ro.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/ru.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/sk.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/sl.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/sr-latn.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/sr.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/sv.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/th.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/tr.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/uk.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/vi.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/zh-cn.js +1 -1
- data/public/javascripts/erp_app/ckeditor/lang/zh.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/autogrow/plugin.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/docprops/dialogs/docprops.js +2 -2
- data/public/javascripts/erp_app/ckeditor/plugins/find/dialogs/find.js +5 -5
- data/public/javascripts/erp_app/ckeditor/plugins/flash/dialogs/flash.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/forms/dialogs/textarea.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/image/dialogs/image.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/link/dialogs/link.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/codemirror_config.js +85 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/editor.css +96 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/buttonbg.gif +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/cancel.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/highlight.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/redo.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/reindent.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/save.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/search.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/images/undo.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/config/nocolors.css +24 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/LICENSE +23 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/bigtest.html +1296 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/compress.html +169 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/css/csharpcolors.css +60 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/index.html +61 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/js/parsecsharp.js +329 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/csharp/js/tokenizecsharp.js +196 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/LICENSE +24 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/css/freemarkercolors.css +63 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/index.html +75 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/freemarker/js/parsefreemarker.js +380 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/groovy/index.html +57 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/LICENSE +20 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/css/javacolors.css +64 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/index.html +66 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/js/parsejava.js +285 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/java/js/tokenizejava.js +222 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/LICENSE +32 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/css/luacolors.css +63 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/index.html +68 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/lua/js/parselua.js +254 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/LICENSE +23 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/css/ometacolors.css +63 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/index.html +77 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/js/parseometa.js +364 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/ometa/js/tokenizeometa.js +209 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/LICENSE +37 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/css/phpcolors.css +114 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/index.html +310 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/js/parsephp.js +419 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/js/parsephphtmlmixed.js +116 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/php/js/tokenizephp.js +1208 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/LICENSE +22 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/css/plsqlcolors.css +57 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/index.html +67 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/plsql/js/parseplsql.js +233 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/LICENSE +32 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/css/pythoncolors.css +58 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/index.html +141 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/python/js/parsepython.js +541 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/css/js-regexcolors.css +214 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/css/regexcolors.css +214 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/index.html +114 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js/parsejavascript_and_regex.js +91 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js/parseregex-unicode.js +284 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js/parseregex.js +847 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/regex/js-regex.html +118 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/LICENSE +23 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/css/schemecolors.css +45 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/index.html +82 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/js/parsescheme.js +428 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/scheme/js/tokenizescheme.js +241 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/LICENSE +22 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/css/sqlcolors.css +59 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/index.html +56 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/sql/js/parsesql.js +267 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/LICENSE +13 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/css/xqcolors-dark.css +93 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/css/xqcolors.css +99 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/css/xqcolors2.css +96 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/index.html +552 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/js/parsexquery.js +234 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/contrib/xquery/js/tokenizexquery.js +457 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/baboon.png +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/baboon_vector.ai +965 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/csscolors.css +55 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/docs.css +158 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/font.js +15 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/jscolors.css +59 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/people.jpg +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/sparqlcolors.css +43 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/css/xmlcolors.css +55 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/csstest.html +60 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/faq.html +86 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/favicon.ico +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/googleb196c451afc2ee11.html +1 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/googlehostedservice.html +1 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/highlight.html +82 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/htmltest.html +53 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/index.html +254 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/codemirror.js +582 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/editor.js +1670 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/highlight.js +68 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/mirrorframe.js +81 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsecss.js +161 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsedummy.js +32 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsehtmlmixed.js +93 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsejavascript.js +359 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsesparql.js +162 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/parsexml.js +291 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/select.js +697 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/stringstream.js +159 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/tokenize.js +57 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/tokenizejavascript.js +174 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/undo.js +413 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/unittests.js +44 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/js/util.js +133 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/jstest.html +56 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/manual.html +806 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/mixedtest.html +52 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/sparqltest.html +41 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/story.html +672 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/unittests.html +125 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/editor/xhtmltest.xhtml +50 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/lang/de.js +20 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/codemirror/lang/en.js +20 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/dialogs/sourcepopup.js +102 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/lang/de.js +9 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/lang/en.js +9 -0
- data/public/javascripts/erp_app/ckeditor/plugins/sourcepopup/plugin.js +27 -0
- data/public/javascripts/erp_app/ckeditor/plugins/specialchar/dialogs/specialchar.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/specialchar/lang/en.js +1 -1
- data/public/javascripts/erp_app/ckeditor/plugins/table/dialogs/table.js +4 -4
- data/public/javascripts/erp_app/ckeditor/plugins/wsc/dialogs/wsc.js +1 -1
- data/public/javascripts/erp_app/ckeditor/skins/kama/dialog.css +1 -1
- data/public/javascripts/erp_app/ckeditor/skins/kama/editor.css +3 -3
- data/public/javascripts/erp_app/ckeditor/skins/office2003/dialog.css +1 -1
- data/public/javascripts/erp_app/ckeditor/skins/office2003/editor.css +1 -1
- data/public/javascripts/erp_app/ckeditor/skins/v2/dialog.css +1 -1
- data/public/javascripts/erp_app/ckeditor/skins/v2/editor.css +1 -1
- data/public/javascripts/erp_app/ckeditor/themes/default/theme.js +2 -2
- data/public/javascripts/erp_app/ckeditor_example_config_override.js +44 -0
- data/public/javascripts/erp_app/desktop/applications/configuration_management/configuration_options_panel.js +229 -0
- data/public/javascripts/erp_app/desktop/applications/configuration_management/configuration_tree_panel.js +482 -0
- data/public/javascripts/erp_app/desktop/applications/configuration_management/configuration_types_panel.js +425 -0
- data/public/javascripts/erp_app/desktop/applications/configuration_management/module.js +95 -0
- data/public/javascripts/erp_app/desktop/applications/configuration_management/stores.0.js +68 -0
- data/public/javascripts/erp_app/desktop/applications/control_panel/application_management_panel.js +2 -1
- data/public/javascripts/erp_app/desktop/applications/control_panel/module.js +48 -47
- data/public/javascripts/erp_app/desktop/applications/control_panel/profile_management_panel.js +141 -84
- data/public/javascripts/erp_app/desktop/applications/file_manager/module.js +1 -2
- data/public/javascripts/erp_app/desktop/applications/scaffold/models_tree_panel.js +1 -2
- data/public/javascripts/erp_app/desktop/applications/system_management/application_role_management_panel.js +1 -2
- data/public/javascripts/erp_app/desktop/applications/user_management/module.js +10 -6
- data/public/javascripts/erp_app/desktop/applications/user_management/role_management_panel.js +3 -9
- data/public/javascripts/erp_app/desktop/applications/user_management/user_application_mgt_panel.js +4 -10
- data/public/javascripts/erp_app/ecommerce/credit_card_window.js +1 -1
- data/public/javascripts/erp_app/jquery_support.js +5 -5
- data/public/javascripts/erp_app/login/mobile.js +52 -0
- data/public/javascripts/erp_app/mobile/app.js +46 -0
- data/public/javascripts/erp_app/mobile/applications/user_management/app/model/user.js +14 -0
- data/public/javascripts/erp_app/mobile/applications/user_management/app/store/users.js +19 -0
- data/public/javascripts/erp_app/mobile/applications/user_management/app/view/templates.js +24 -0
- data/public/javascripts/erp_app/mobile/applications/user_management/app.js +168 -0
- data/public/javascripts/erp_app/mobile/mobile_base.js +10 -0
- data/public/javascripts/erp_app/organizer/applications/crm/base.js +415 -117
- data/public/javascripts/erp_app/organizer/applications/crm/contact_mechanism_grid.js +8 -1
- data/public/javascripts/erp_app/organizer/applications/crm/party_grid.js +33 -36
- data/public/javascripts/erp_app/organizer/applications/crm/userinfo.js +215 -0
- data/public/javascripts/erp_app/organizer/layout.js +9 -11
- data/public/javascripts/erp_app/shared/active_ext/active_ext_grid.js +1 -2
- data/public/javascripts/erp_app/shared/active_ext/active_ext_grid_panel.js +2 -3
- data/public/javascripts/erp_app/shared/compass_ckeditor.js +7 -6
- data/public/javascripts/erp_app/shared/compass_codemirror.js +161 -162
- data/public/javascripts/erp_app/shared/configuration/configuration_form.js +278 -0
- data/public/javascripts/erp_app/shared/configuration/configuration_panel.js +109 -0
- data/public/javascripts/erp_app/{coolclock → shared/coolclock}/coolclock.js +0 -0
- data/public/javascripts/erp_app/{coolclock → shared/coolclock}/moreskins.js +0 -0
- data/public/javascripts/erp_app/{coolclock → shared/coolclock}/tray_clock.js +0 -0
- data/public/javascripts/erp_app/shared/dynamic_editable_grid.js +29 -28
- data/public/javascripts/erp_app/shared/dynamic_editable_grid_loader_panel.js +3 -3
- data/public/javascripts/erp_app/shared/file_manager_tree.js +41 -25
- data/public/javascripts/erp_app/shared/file_upload/Ext.ux.AwesomeUploader.js +1 -1
- data/public/javascripts/erp_app/shared/file_upload/Ext.ux.XHRUpload.js +1 -1
- data/public/javascripts/erp_app/shared/file_upload/upload_window.js +245 -242
- data/public/javascripts/erp_app/shared/google_map_panel.js +82 -83
- data/public/javascripts/erp_app/shared/notes_grid.js +1 -2
- data/public/javascripts/erp_app/shared/preference_form.js +3 -5
- data/public/javascripts/erp_app/tinymce/Ext.ux.TinyMCE.js +689 -0
- data/public/javascripts/erp_app/tinymce/center_region.js +611 -0
- data/public/javascripts/erp_app/utility.js +284 -246
- data/public/javascripts/erp_app/widgets.js +39 -35
- data/public/javascripts/extjs/Ext.ux.form.MultiSelect.js +422 -0
- data/public/javascripts/extjs/ext-all-debug.js +15973 -12927
- data/public/javascripts/extjs/ext-all.js +1 -1
- data/public/javascripts/extjs/overrides.js +61 -0
- data/public/javascripts/sencha_touch/sencha-touch-all-debug.js +78370 -0
- data/public/javascripts/sencha_touch/sencha-touch-all.js +15 -0
- data/public/stylesheets/erp_app/mobile/applications/user_management/main.css +5 -0
- data/public/stylesheets/erp_app/mobile/mobile.css +336 -0
- data/public/stylesheets/erp_app/{compass-ext-all.css → shared/compass-ext-all.css} +37 -1
- data/public/stylesheets/extjs/resources/css/ext-all-access.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-all-gray.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-all-scoped.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-all.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-ie-scoped.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-ie.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-sandbox.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-standard-scoped.css +1 -1
- data/public/stylesheets/extjs/resources/css/ext-standard.css +1 -1
- data/public/stylesheets/extjs/resources/sass/ext-all-access.scss +7 -0
- data/public/stylesheets/extjs/resources/sass/ext-all-gray.scss +6 -0
- data/public/stylesheets/extjs/resources/themes/images/access/boundlist/trigger-arrow.png +0 -0
- data/public/stylesheets/extjs/resources/themes/images/access/grid/refresh-disabled.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/access/tab-bar/{tab-bar-bg.gif → tab-bar-default-bg.gif} +0 -0
- data/public/stylesheets/extjs/resources/themes/images/access/tree/drop-above.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/access/tree/drop-append.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/access/tree/drop-below.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-large-focus-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-large-over-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-large-pressed-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-medium-focus-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-medium-over-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-medium-pressed-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-small-focus-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-small-over-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-small-pressed-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-large-focus-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-large-over-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-large-pressed-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-medium-focus-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-medium-over-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-medium-pressed-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-small-focus-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-small-over-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/btn/btn-default-toolbar-small-pressed-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/form-invalid-tip/form-invalid-tip-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/form-invalid-tip/form-invalid-tip-sides.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-bottom-disabled-bg.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-bottom-disabled-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-bottom-disabled-sides.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-top-disabled-bg.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-top-disabled-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tab/tab-default-top-disabled-sides.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tab-bar/tab-bar-default-bg.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/tip/tip-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-bottom-sides.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-left-sides.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-right-sides.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-top-corners.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/images/default/window-header/window-header-default-top-sides.gif +0 -0
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/_all.scss +3 -0
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/_mixins.scss +6 -3
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/core/_core.scss +17 -17
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/core/_reset.scss +17 -7
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/layout/_layout.scss +10 -6
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/mixins/_frame.scss +4 -4
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/mixins/_reset-extras.scss +144 -0
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/mixins/_theme-background-image.scss +8 -4
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_dragdrop.scss +3 -3
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_messagebox.scss +5 -5
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_resizable.scss +6 -6
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_splitter.scss +8 -8
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/util/_tool.scss +1 -1
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/variables/_core.scss +1 -1
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/variables/_menu.scss +1 -0
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_button.scss +38 -27
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_datepicker.scss +7 -7
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_drawcomponent.scss +1 -5
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_grid.scss +56 -57
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_loadmask.scss +1 -1
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_menu.scss +22 -16
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_panel.scss +10 -4
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_progress-bar.scss +2 -1
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_qtip.scss +1 -1
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_slider.scss +9 -11
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_tab.scss +68 -43
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_tabbar.scss +1 -1
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_toolbar.scss +3 -3
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/_tree.scss +48 -31
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_all.scss +4 -2
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_checkbox.scss +3 -2
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_checkboxgroup.scss +3 -2
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_field.scss +3 -3
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_fieldset.scss +1 -5
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_htmleditor.scss +16 -15
- data/public/stylesheets/extjs/resources/themes/stylesheets/ext4/default/widgets/form/_triggerfield.scss +10 -10
- data/public/stylesheets/extjs/resources/themes/templates/resources/sass/config.rb +2 -4
- data/public/stylesheets/extjs/resources/themes/templates/resources/sass/my-ext-theme.scss +1 -0
- data/public/stylesheets/sencha_touch/resources/css/android.css +1 -0
- data/public/stylesheets/sencha_touch/resources/css/apple.css +1 -0
- data/public/stylesheets/sencha_touch/resources/css/bb6.css +1 -0
- data/public/stylesheets/sencha_touch/resources/css/sencha-touch.css +1 -0
- data/public/stylesheets/sencha_touch/resources/css/touch-charts.css +1 -0
- data/public/stylesheets/sencha_touch/resources/css-debug/android.css +6757 -0
- data/public/stylesheets/sencha_touch/resources/css-debug/apple.css +6766 -0
- data/public/stylesheets/sencha_touch/resources/css-debug/bb6.css +6352 -0
- data/public/stylesheets/sencha_touch/resources/css-debug/sencha-touch.css +6755 -0
- data/public/stylesheets/sencha_touch/resources/images/icon1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/images/icon2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/images/icon3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/images/icon4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/images/welcome.png +0 -0
- data/public/stylesheets/sencha_touch/resources/sass/android.scss +37 -0
- data/public/stylesheets/sencha_touch/resources/sass/apple.scss +39 -0
- data/public/stylesheets/sencha_touch/resources/sass/bb6.scss +66 -0
- data/public/stylesheets/sencha_touch/resources/sass/config-debug.rb +11 -0
- data/public/stylesheets/sencha_touch/resources/sass/config.rb +11 -0
- data/public/stylesheets/sencha_touch/resources/sass/sencha-touch.scss +18 -0
- data/public/stylesheets/sencha_touch/resources/themes/compass_init.rb +6 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/check.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/clear_icon.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/disclosure.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/disclosure2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/dotgrid.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/loading.gif +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/action.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/add.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/add1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/add_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/address_book.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_down.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_left.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_right.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/arrow_up.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/at.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/atom.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/attachment_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/backspace.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/battery_full.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/battery_low.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/battery_power.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/blank.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bolt.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bolt_side.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmark1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmark2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmark_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bookmarks.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/briefcase1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/briefcase2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/brightness1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/brightness2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/broadcast.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bug.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bulb.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bullseye1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/bullseye2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/calendar.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/calendar2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/calendar_add.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/card1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/card2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chart1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chart2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chart3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/chat_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/check_dotted.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/circle.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/circle2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/clash.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_black_upload1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_black_upload2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_bolt.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cloud_download.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/code1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/code2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/code3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compass1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compass2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compass3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/compose_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/contract.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/cube.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/data.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/delete_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_black_landscape.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_compose1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_compose2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_delete.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_down.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_drawer.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_list.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_new.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_send.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/doc_up.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/docs_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/download_screen.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/eject.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/empty1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/empty2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/equalizer1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/equalizer2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/event_complete.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/expand.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/favorites.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/favorites1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/favorites_circle.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/fforward.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/find.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/flag.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/flickr2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_add.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_black_open.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_delete.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_delete2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_lock.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/folder_open2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/font.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/forbidden.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/forward_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/globe1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/globe2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/globe_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/headphones.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/heart.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/heart_circle.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/help.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/help_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/home.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/home2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/hot.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/inbox1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/inbox2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/inbox3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/infinite.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/infinite2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info_plain.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/info_plain2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/json.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/lab.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/layout.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/link1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/link2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/link_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/list.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/locate4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/lock_closed.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/lock_open.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/look.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/loop.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/loop2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/loop_circle.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/magic.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mail5.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/maps.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mic.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/minus_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/monitor4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/more.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/mouse.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/move.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/music1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/music2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/nodes1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/nodes2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/note_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/nuclear.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/organize.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/outbox.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/pause.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone_ring1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/phone_ring2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photo_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photos1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photos2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/photos4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/piechart.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/play_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/podcast.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/power socket.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/power_on.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/print.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/print2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/quote_black3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/refresh5.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/reply.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/replytoall.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/resize.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/resize_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rewind.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/right.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/right2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/rss_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/screens.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/search_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/server.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/servers.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings10.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings11.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings5.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings6.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings7.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings8.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings9.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/settings_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/share.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shield1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shield2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shop1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shop2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/shuffle.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_backforth.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_cross.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_leftright.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_leftright2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_split.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_switch.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sign_uturn.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/spaces1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/spaces2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/speedometer_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/star.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/stop.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/stop1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/stop2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/sync.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tabbed_book.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tag.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tag_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tags.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/team.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/team1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/time.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/time_repeat.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/trash.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/trash2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/trash_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tree.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tv.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/tweak.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/twitter1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/twitter2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/up1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/up2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/up_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/upload2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_add.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_business.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_fave.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_list.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_list2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_remote1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_remove2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/user_send.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/video.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/video_black1.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/video_black2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_down.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_mute.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/volume_up.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/warming_dotted.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/warning_black.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi2.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi3.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/wifi4.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pictos/window.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/pullarrow.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/select_mask.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/tip.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/tip_horizontal.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/tip_right.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/togglebg.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/togglemask.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/togglethumb.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/togglethumbbg.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/togglethumbmask.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/images/default/trackmask_outer.png +0 -0
- data/public/stylesheets/sencha_touch/resources/themes/lib/theme_images.rb +18 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_all.scss +2 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_core.scss +3 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_global.scss +2 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_mixins.scss +196 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_variables.scss +116 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/_widgets.scss +16 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/core/_core.scss +189 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/core/_layout.scss +362 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/core/_reset.scss +62 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_buttons.scss +354 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_carousel.scss +113 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders-basic.scss +102 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form-sliders.scss +149 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_form.scss +608 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_img.scss +5 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_indexbar.scss +76 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_list.scss +401 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_loading-spinner.scss +121 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_map.scss +11 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_media.scss +21 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_msgbox.scss +94 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_panel.scss +79 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_picker.scss +154 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_sheets.scss +52 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_tabs.scss +269 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar-forms.scss +182 -0
- data/public/stylesheets/sencha_touch/resources/themes/stylesheets/sencha-touch/default/widgets/_toolbar.scss +156 -0
- data/public/stylesheets/sencha_touch/resources/themes/templates/project/manifest.rb +1 -0
- data/public/stylesheets/sencha_touch/resources/themes/templates/project/sencha-touch.scss +17 -0
- metadata +3251 -2688
- data/README.rdoc +0 -2
- data/config/initializers/erp_app.rb +0 -4
- data/lib/erp_app/extensions/active_record/acts_as_app_container.rb +0 -72
- data/lib/erp_app/extensions/railties/action_view.rb +0 -110
- data/lib/erp_app/widgets/railties/action_view.rb +0 -36
- data/lib/erp_app/widgets/railties/engine.rb +0 -55
- data/public/images/icons/add/Thumbs.db +0 -0
- data/public/images/icons/calendar/Thumbs.db +0 -0
- data/public/images/icons/copy/Thumbs.db +0 -0
- data/public/images/icons/cut/Thumbs.db +0 -0
- data/public/images/icons/delete/Thumbs.db +0 -0
- data/public/images/icons/edit/Thumbs.db +0 -0
- data/public/images/icons/folder/Thumbs.db +0 -0
- data/public/images/icons/gear/Thumbs.db +0 -0
- data/public/images/icons/globe/Thumbs.db +0 -0
- data/public/images/icons/grid/Thumbs.db +0 -0
- data/public/images/icons/help/Thumbs.db +0 -0
- data/public/images/icons/information/Thumbs.db +0 -0
- data/public/images/icons/key/Thumbs.db +0 -0
- data/public/images/icons/log_out/Thumbs.db +0 -0
- data/public/images/icons/mail/Thumbs.db +0 -0
- data/public/images/icons/new/Thumbs.db +0 -0
- data/public/images/icons/next/Thumbs.db +0 -0
- data/public/images/icons/open/Thumbs.db +0 -0
- data/public/images/icons/paste/Thumbs.db +0 -0
- data/public/images/icons/picture/Thumbs.db +0 -0
- data/public/images/icons/presentation/Thumbs.db +0 -0
- data/public/images/icons/preview/Thumbs.db +0 -0
- data/public/images/icons/previous/Thumbs.db +0 -0
- data/public/images/icons/print/Thumbs.db +0 -0
- data/public/images/icons/properties/Thumbs.db +0 -0
- data/public/images/icons/redo/Thumbs.db +0 -0
- data/public/images/icons/refresh/Thumbs.db +0 -0
- data/public/images/icons/remove/Thumbs.db +0 -0
- data/public/images/icons/rename/Thumbs.db +0 -0
- data/public/images/icons/save/Thumbs.db +0 -0
- data/public/images/icons/search/Thumbs.db +0 -0
- data/public/images/icons/send/Thumbs.db +0 -0
- data/public/images/icons/settings/Thumbs.db +0 -0
- data/public/images/icons/synchronize/Thumbs.db +0 -0
- data/public/images/icons/undo/Thumbs.db +0 -0
- data/public/images/icons/upload/Thumbs.db +0 -0
- data/public/images/icons/user/Thumbs.db +0 -0
- data/public/images/icons/zoom_in/Thumbs.db +0 -0
- data/public/images/icons/zoom_out/Thumbs.db +0 -0
- data/public/javascripts/erp_app/ckeditor/plugins/jwplayer/jwplayer/Thumbs.db +0 -0
- data/public/javascripts/erp_app/shared/ajax_pagination.js +0 -33
- data/public/stylesheets/extjs/resources/themes/images/access/tab-bar/tab-bar-bg.png +0 -0
- data/public/stylesheets/extjs/resources/themes/templates/resources/css/my-ext-theme.css +0 -59
- data/spec/dummy/db/schema.rb +0 -709
- data/spec/dummy/db/spec.sqlite3 +0 -0
- data/spec/dummy/log/RAILS_ENV=spec.log +0 -0
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/spec.log +0 -52150
@@ -0,0 +1,847 @@
|
|
1
|
+
/* Simple parser for Regular Expressions */
|
2
|
+
/* Thanks to Marijn for patiently addressing some questions and to
|
3
|
+
* Steven Levithan for XRegExp http://xregexp.com/ for pointing the way to the regexps for the regex (I
|
4
|
+
* only discovered his own regex syntax editor RegexPal later on) */
|
5
|
+
|
6
|
+
/*
|
7
|
+
// Possible future to-dos:
|
8
|
+
0) Unicode plugin fix for astral and update for Unicode 6.0.0
|
9
|
+
1) Allow parsing of string escaped regular expressions (e.g., \\ as \ and regular \n as an actual newline) and
|
10
|
+
could potentially integrate into parsing for other languages where known (e.g., string inside RegExp constructor)
|
11
|
+
2) If configured, allow parsing of replace strings (e.g., $1, \1)
|
12
|
+
3) Shared classes
|
13
|
+
a) As with ranges and unicode classes, could also try to supply equivalents which list all
|
14
|
+
characters inside a whole character class
|
15
|
+
b) Add common classes for ranges, inside char. classes, and allow for alternation of colors
|
16
|
+
4) Groups
|
17
|
+
a) detect max's (or even inner_group_mode) from CSS if specified as "max-available"
|
18
|
+
_cssPropertyExists('span.regex-max-available') || _cssPropertyExists('.regex-max-available');
|
19
|
+
b) Remove inner_group_mode and just always both uniform and type-based styles? (first improve
|
20
|
+
inner_group_mode performance when on)
|
21
|
+
5) Expand configuration for different flavors of regex or language implementations corresponding to config
|
22
|
+
options
|
23
|
+
6) Allow free-spacing mode to work with newlines?
|
24
|
+
*/
|
25
|
+
|
26
|
+
/**
|
27
|
+
* OPTIONS (SETUP):
|
28
|
+
* "possible_flags": {String} All flags to support (as a string of joined characters); default is 'imgxs';
|
29
|
+
* if 'literal' is on, this will check for validity against the literal flags, but
|
30
|
+
* use the literal flags
|
31
|
+
* "flags": {String} List of flags to use on this query; will be added to any literals; default is ''
|
32
|
+
* "literal": {Boolean} Whether inside a literal or not
|
33
|
+
* "literal_initial": {String} The initial character to surround regular expression (optionally followed by flags);
|
34
|
+
* A forward slash ("/"), by default
|
35
|
+
*
|
36
|
+
* OPTIONS (STYLING)
|
37
|
+
* "inner_group_mode": {'type'|'uniform'} Indicates how (if at all) to style content inside groups; if by "type",
|
38
|
+
* the class will be assigned by type; if "uniform", a class named
|
39
|
+
* "regex-group-<lev>-<seq>" where <lev> is the nesting level and
|
40
|
+
* <seq> is the sequence number; the "uniform" option allows grouped
|
41
|
+
* content to be styled consistently (but potentially differently from
|
42
|
+
* the parentheses themselves) no matter the type of group
|
43
|
+
* "max_levels": {Number|String} Maximum number of nesting levels before class numbers repeat
|
44
|
+
* "max_alternating": {Number|String} Maximum number of alternating sequences at the same level before
|
45
|
+
* class numbers repeat
|
46
|
+
*
|
47
|
+
* OPTIONS (PATTERNS)
|
48
|
+
* "flavor": {'all'|'ecma-262-ed5'|'ecma-262-ed3'} Sets defaults for the following patterns according to the regex flavor
|
49
|
+
*
|
50
|
+
* "unicode_mode": {'simple'|'validate'|'store'} Mode for handling Unicode classes; unless 'simple' is chosen, may
|
51
|
+
* affect performance given initial need to load and subsequent need
|
52
|
+
* to parse and validate (i.e., selectively color), and, if 'store' is chosen,
|
53
|
+
* also makes these (many) additional values on the token object, e.g.,
|
54
|
+
* for use by activeTokens for adding tooltips; Default is 'simple' which
|
55
|
+
* simply checks that the values are plausible;
|
56
|
+
* Note: To include Unicode validation, you must include your
|
57
|
+
* CodeMirror parserfile in this sequence:
|
58
|
+
* parserfile: ["parseregex.js", "parseregex-unicode.js"]
|
59
|
+
* "unicode_classes": {Boolean} Whether to accept all Unicode classes (unless overridden); default is true
|
60
|
+
* "unicode_blocks": {Boolean} Whether to accept Unicode blocks (overrides unicode_classes default); e.g., \p{InArabic}
|
61
|
+
* "unicode_scripts": {Boolean} Whether to accept Unicode scripts (overrides unicode_classes default); e.g., \p{Hebrew}
|
62
|
+
* "unicode_categories": {Boolean} Whether to accept Unicode categories (overrides unicode_classes default); e.g., \p{Ll} (for lower-case letters)
|
63
|
+
* "named_backreferences": {Boolean} Whether to accept named backreferences; default is true
|
64
|
+
* "empty_char_class": {Boolean} Whether to allow [] or [^] as character classes; default is true
|
65
|
+
* "mode_modifier": {Boolean} Whether to allow (?imsx) mode modifiers
|
66
|
+
*
|
67
|
+
* NOTE
|
68
|
+
* You can add the following to your CodeMirror configuration object in order to get simple tooltips showing the
|
69
|
+
* character equivalent of an escape sequence:
|
70
|
+
activeTokens : function (spanNode, tokenObject, editor) {
|
71
|
+
if (tokenObject.equivalent) {
|
72
|
+
spanNode.title = tokenObject.equivalent;
|
73
|
+
}
|
74
|
+
},
|
75
|
+
....or this more advanced one which adds ranges (though you may wish to change the character limit, being
|
76
|
+
aware that browsers have a limitation on tooltip size, unless you were to also use a tooltip library which used
|
77
|
+
this information to expand the visible content):
|
78
|
+
activeTokens : (function () {
|
79
|
+
var charLimit = 500;
|
80
|
+
var lastEquivalent, rangeBegan, lastRangeHyphen;
|
81
|
+
|
82
|
+
function _buildTitle (beginChar, endChar) {
|
83
|
+
var beginCode = beginChar.charCodeAt(0), endCode = endChar.charCodeAt(0);
|
84
|
+
var title = '';
|
85
|
+
if (endCode - beginCode <= charLimit) {
|
86
|
+
for (var i = beginCode; i <= endCode; i++) {
|
87
|
+
title += String.fromCharCode(i);
|
88
|
+
}
|
89
|
+
}
|
90
|
+
return title;
|
91
|
+
}
|
92
|
+
|
93
|
+
return function (spanNode, token, editor) {
|
94
|
+
var content = token.content;
|
95
|
+
if (lastEquivalent && token.style === 'regex-class-range-hyphen') {
|
96
|
+
rangeBegan = true;
|
97
|
+
lastRangeHyphen = spanNode;
|
98
|
+
}
|
99
|
+
else if (rangeBegan) {
|
100
|
+
var beginChar = lastEquivalent;
|
101
|
+
var endChar = (token.equivalent || content);
|
102
|
+
lastRangeHyphen.title = _buildTitle(beginChar, endChar);
|
103
|
+
rangeBegan = false;
|
104
|
+
lastEquivalent = null;
|
105
|
+
//editor.reparseBuffer(); // title must be redrawn since already added previously (do below instead as locking up on undo?); too intensive to call this, but keeping here for record
|
106
|
+
}
|
107
|
+
else if (content === ']') {
|
108
|
+
rangeBegan = false;
|
109
|
+
}
|
110
|
+
else {
|
111
|
+
rangeBegan = false;
|
112
|
+
// Fix: 'regex-unicode-class-inside' not supported and should not be since it wouldn't make sense as a starting range?
|
113
|
+
lastEquivalent = token.equivalent || content;
|
114
|
+
}
|
115
|
+
|
116
|
+
if (token.display) {
|
117
|
+
spanNode.title = token.display;
|
118
|
+
}
|
119
|
+
else if (token.equivalent) {
|
120
|
+
if (token.unicode) {
|
121
|
+
var range = /(.)-(.)/g;
|
122
|
+
spanNode.title = token.equivalent.replace(range,
|
123
|
+
function (n0, n1, n2) {
|
124
|
+
return _buildTitle(n1, n2);
|
125
|
+
}
|
126
|
+
);
|
127
|
+
// editor.reparseBuffer(); // too intensive to call this, but keeping here for record
|
128
|
+
}
|
129
|
+
else {
|
130
|
+
spanNode.title = token.equivalent;
|
131
|
+
// editor.reparseBuffer(); // too intensive to call this, but keeping here for record
|
132
|
+
}
|
133
|
+
}
|
134
|
+
};
|
135
|
+
}()),
|
136
|
+
*/
|
137
|
+
|
138
|
+
|
139
|
+
var RegexParser = Editor.Parser = (function() {
|
140
|
+
|
141
|
+
var regexConfigBooleanOptions = ['unicode_blocks', 'unicode_scripts', 'unicode_categories',
|
142
|
+
'unicode_classes', 'named_backreferences', 'empty_char_class', 'mode_modifier'],
|
143
|
+
regexConfigStringOptions = ['unicode_mode'], // Just for record-keeping
|
144
|
+
possibleFlags = 'imgxs',
|
145
|
+
config = {}, ucl;
|
146
|
+
// Resettable
|
147
|
+
var initialFound, endFound, charClassRangeBegun, negatedCharClass, mode_modifier_begun, flags = '',
|
148
|
+
groupTypes, groupCounts;
|
149
|
+
|
150
|
+
config.literal_initial = '/';
|
151
|
+
|
152
|
+
// Adapted from tokenize.js (not distinctly treating whitespace except for newlines)
|
153
|
+
function noWSTokenizer (source, state) {
|
154
|
+
var tokenizer = {
|
155
|
+
state: state,
|
156
|
+
take: function(type) {
|
157
|
+
if (typeof(type) == "string")
|
158
|
+
type = {style: type, type: type};
|
159
|
+
type.content = (type.content || "") + source.get();
|
160
|
+
type.value = type.content + source.get();
|
161
|
+
return type;
|
162
|
+
},
|
163
|
+
next: function () {
|
164
|
+
if (!source.more()) throw StopIteration;
|
165
|
+
var type;
|
166
|
+
if (source.equals("\n")) {
|
167
|
+
source.next();
|
168
|
+
return this.take("whitespace");
|
169
|
+
}
|
170
|
+
while (!type)
|
171
|
+
type = this.state(source, function(s) {tokenizer.state = s;});
|
172
|
+
return this.take(type);
|
173
|
+
}
|
174
|
+
};
|
175
|
+
return tokenizer;
|
176
|
+
}
|
177
|
+
|
178
|
+
// Private static utilities
|
179
|
+
function _expandRange (type, name) { // More efficient than unpack in targeting only which we need (though ideally would not need to convert at all)
|
180
|
+
var codePt = /\w{4}/g,
|
181
|
+
unicode = RegexParser.unicode, group = unicode[type];
|
182
|
+
if (group.hasOwnProperty(name)) {
|
183
|
+
// group[name] = group[name].replace(codePt, '\\u$&'); // We shouldn't need this unless we start validating against a matching string
|
184
|
+
return group[name].replace(codePt,
|
185
|
+
function (n0) {
|
186
|
+
if (n0 === '002D') {
|
187
|
+
return 'U+' + n0; // Leave genuine hyphens unresolved so they won't get confused with range hyphens
|
188
|
+
}
|
189
|
+
return String.fromCharCode(parseInt('0x' + n0, 16)); // Fix: Would be more efficient to store as Unicode characters like this from the start
|
190
|
+
});
|
191
|
+
}
|
192
|
+
return false;
|
193
|
+
}
|
194
|
+
|
195
|
+
function _copyObj (obj, deep) {
|
196
|
+
var ret = {};
|
197
|
+
for (var p in obj) {
|
198
|
+
if (obj.hasOwnProperty(p)) {
|
199
|
+
if (deep && typeof obj[p] === 'object' && obj[p] !== null) {
|
200
|
+
ret[p] = _copyObj(obj[p], deep);
|
201
|
+
}
|
202
|
+
else {
|
203
|
+
ret[p] = obj[p];
|
204
|
+
}
|
205
|
+
}
|
206
|
+
}
|
207
|
+
return ret;
|
208
|
+
}
|
209
|
+
|
210
|
+
function _forEach (arr, h) {
|
211
|
+
for (var i = 0, arrl = arr.length; i < arrl; i++) {
|
212
|
+
h(arr[i], i);
|
213
|
+
}
|
214
|
+
}
|
215
|
+
function _setOptions (arr, value) {
|
216
|
+
arr = typeof arr === 'string' ? [arr] : arr;
|
217
|
+
_forEach(arr, function (item) {
|
218
|
+
config[item] = value;
|
219
|
+
});
|
220
|
+
}
|
221
|
+
|
222
|
+
function _cssPropertyExists (selectorText) {
|
223
|
+
var i = 0, j = 0, dsl = 0, crl = 0, ss, d = document,
|
224
|
+
_getPropertyFromStyleSheet =
|
225
|
+
function (ss, selectorText) {
|
226
|
+
var rules = ss.cssRules ? ss.cssRules : ss.rules; /* Mozilla or IE */
|
227
|
+
for (j = 0, crl = rules.length; j < crl; j++) {
|
228
|
+
var rule = rules[j];
|
229
|
+
try {
|
230
|
+
if (rule.type === CSSRule.STYLE_RULE && rule.selectorText === selectorText) {
|
231
|
+
return true;
|
232
|
+
}
|
233
|
+
}
|
234
|
+
catch (err) { /* IE */
|
235
|
+
if (rule.selectorText === selectorText) {
|
236
|
+
return true;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
}
|
240
|
+
return false;
|
241
|
+
};
|
242
|
+
|
243
|
+
var value;
|
244
|
+
for (i = 0, dsl = d.styleSheets.length; i < dsl; i++) {
|
245
|
+
ss = d.styleSheets[i];
|
246
|
+
value = _getPropertyFromStyleSheet(ss, selectorText);
|
247
|
+
if (value) {
|
248
|
+
break;
|
249
|
+
}
|
250
|
+
}
|
251
|
+
return value;
|
252
|
+
}
|
253
|
+
|
254
|
+
function _addFlags (f) {
|
255
|
+
if ((/[^a-z]/).test(f)) { // Could insist on particular flags
|
256
|
+
throw 'Invalid flag supplied to the regular expression parser';
|
257
|
+
}
|
258
|
+
flags += f;
|
259
|
+
}
|
260
|
+
function _setPossibleFlags (f) {
|
261
|
+
if ((/[^a-z]/).test(f)) { // Could insist on particular flags
|
262
|
+
throw 'Invalid flag supplied to the regular expression parser';
|
263
|
+
}
|
264
|
+
possibleFlags = f;
|
265
|
+
}
|
266
|
+
function _esc (s) {
|
267
|
+
return s.replace(/"[.\\+*?\[\^\]$(){}=!<>|:\-]/g, '\\$&');
|
268
|
+
}
|
269
|
+
|
270
|
+
var tokenizeRegex = (function() {
|
271
|
+
// Private utilities
|
272
|
+
function _hasFlag (f) {
|
273
|
+
return flags.indexOf(f) > -1;
|
274
|
+
}
|
275
|
+
function _lookAheadMatches (source, regex) {
|
276
|
+
var matches = source.lookAheadRegex(regex, true);
|
277
|
+
if (matches && matches.length > 1) { // Allow us to return the position of a match out of alternates
|
278
|
+
for (var i = matches.length - 1; i >= 0; i--) {
|
279
|
+
if (matches[i] != null) {
|
280
|
+
return i;
|
281
|
+
}
|
282
|
+
}
|
283
|
+
}
|
284
|
+
return 0;
|
285
|
+
}
|
286
|
+
|
287
|
+
function validateUnicodeClass (negated, place, source) {
|
288
|
+
var neg = ' regex-' + negated + 'unicode', ret = 'regex-unicode-class-' + place + neg,
|
289
|
+
name, unicode = RegexParser.unicode;
|
290
|
+
if (!unicode) {
|
291
|
+
throw 'Unicode plugin of the regular expression parser not properly loaded';
|
292
|
+
}
|
293
|
+
if (config.unicode_categories) {
|
294
|
+
var categories = source.lookAheadRegex(/^\\[pP]{\^?([A-Z][a-z]?)}/, true);
|
295
|
+
if (categories) {
|
296
|
+
name = categories[1];
|
297
|
+
if (unicode.categories[name]) {
|
298
|
+
return ret + '-category-' + place + neg + '-category-' + name + '-' + place;
|
299
|
+
}
|
300
|
+
return 'regex-bad-sequence';
|
301
|
+
}
|
302
|
+
}
|
303
|
+
if (config.unicode_blocks) {
|
304
|
+
var blocks = source.lookAheadRegex(/^\\[pP]{\^?(In[A-Z][^}]*)}/, true);
|
305
|
+
if (blocks) {
|
306
|
+
name = blocks[1];
|
307
|
+
if (unicode.blocks[name]) {
|
308
|
+
return ret + '-block-' + place + neg + '-block-' + name + '-' + place;
|
309
|
+
}
|
310
|
+
return 'regex-bad-sequence';
|
311
|
+
}
|
312
|
+
}
|
313
|
+
if (config.unicode_scripts) {
|
314
|
+
var scripts = source.lookAheadRegex(/^\\[pP]{\^?([^}]*)}/, true);
|
315
|
+
if (scripts) {
|
316
|
+
name = scripts[1];
|
317
|
+
if (unicode.scripts[name]) {
|
318
|
+
return ret + '-script-' + place + neg + '-script-' + name + '-' + place;
|
319
|
+
}
|
320
|
+
return 'regex-bad-sequence';
|
321
|
+
}
|
322
|
+
}
|
323
|
+
return false;
|
324
|
+
}
|
325
|
+
|
326
|
+
function unicode_class (source, place) {
|
327
|
+
var ret = 'regex-unicode-class-' + place + ' ', negated = '';
|
328
|
+
if (source.lookAheadRegex(/^\\P/) || source.lookAheadRegex(/^\\p{\^/)) {
|
329
|
+
negated = 'negated';
|
330
|
+
}
|
331
|
+
else if (source.lookAheadRegex(/^\\P{\^/)) { // Double-negative
|
332
|
+
return false;
|
333
|
+
}
|
334
|
+
switch (config.unicode_mode) {
|
335
|
+
case 'validate': case 'store':
|
336
|
+
return validateUnicodeClass(negated, place, source);
|
337
|
+
case 'simple': // Fall-through
|
338
|
+
default:
|
339
|
+
// generic: /^\\[pP]{\^?[^}]*}/
|
340
|
+
if (config.unicode_categories && source.lookAheadRegex(/^\\[pP]{\^?[A-Z][a-z]?}/, true)) {
|
341
|
+
return ret + 'regex-' + negated + 'unicode-category';
|
342
|
+
}
|
343
|
+
if (config.unicode_blocks && source.lookAheadRegex(/^\\[pP]{\^?In[A-Z][^}]*}/, true)) {
|
344
|
+
return ret + 'regex-' + negated + 'unicode-block';
|
345
|
+
}
|
346
|
+
if (config.unicode_scripts && source.lookAheadRegex(/^\\[pP]{\^?[^}]*}/, true)) {
|
347
|
+
return ret + 'regex-' + negated + 'unicode-script';
|
348
|
+
}
|
349
|
+
break;
|
350
|
+
}
|
351
|
+
return false;
|
352
|
+
}
|
353
|
+
|
354
|
+
// State functions
|
355
|
+
// Changed [\s\S] to [^\n] to avoid accidentally grabbing a terminating (auto-inserted place-holder?) newline
|
356
|
+
var inside_class_meta = /^\\(?:([0-3][0-7]{0,2}|[4-7][0-7]?)|(x[\dA-Fa-f]{2})|(u[\dA-Fa-f]{4})|(c[A-Za-z])|(-\\]^)|([bBdDfnrsStvwW0])|([^\n]))/;
|
357
|
+
function inside_class (source, setState) {
|
358
|
+
var ret;
|
359
|
+
if (source.lookAhead(']', true)) {
|
360
|
+
// charClassRangeBegun = false; // Shouldn't be needed
|
361
|
+
setState(customOutsideClass);
|
362
|
+
return 'regex-class-end';
|
363
|
+
}
|
364
|
+
if (negatedCharClass && source.lookAhead('^', true)) {
|
365
|
+
negatedCharClass = false;
|
366
|
+
return 'regex-class-negator';
|
367
|
+
}
|
368
|
+
if (source.lookAhead('-', true)) {
|
369
|
+
if (!charClassRangeBegun) {
|
370
|
+
ret = 'regex-class-initial-hyphen';
|
371
|
+
}
|
372
|
+
else if (source.equals(']')) {
|
373
|
+
ret = 'regex-class-final-hyphen';
|
374
|
+
}
|
375
|
+
else {
|
376
|
+
return 'regex-class-range-hyphen';
|
377
|
+
}
|
378
|
+
}
|
379
|
+
else if (!source.equals('\\')) {
|
380
|
+
var ch = source.next();
|
381
|
+
if (config.literal && ch === config.literal_initial) {
|
382
|
+
return 'regex-bad-character';
|
383
|
+
}
|
384
|
+
ret = 'regex-class-character';
|
385
|
+
}
|
386
|
+
else if ((ucl = unicode_class(source, 'inside'))) {
|
387
|
+
ret = ucl;
|
388
|
+
}
|
389
|
+
else if (source.lookAheadRegex(/^\\(\n|$)/)) { // Treat an ending backslash like a bad
|
390
|
+
// character to avoid auto-adding of extra text
|
391
|
+
source.next();
|
392
|
+
ret = 'regex-bad-character';
|
393
|
+
}
|
394
|
+
else {
|
395
|
+
switch (_lookAheadMatches(source, inside_class_meta)) {
|
396
|
+
case 1:
|
397
|
+
ret = 'regex-class-octal';
|
398
|
+
break;
|
399
|
+
case 2:
|
400
|
+
ret = 'regex-class-hex';
|
401
|
+
break;
|
402
|
+
case 3:
|
403
|
+
ret = 'regex-class-unicode-escape';
|
404
|
+
break;
|
405
|
+
case 4:
|
406
|
+
ret = 'regex-class-ascii-control';
|
407
|
+
break;
|
408
|
+
case 5:
|
409
|
+
ret = 'regex-class-escaped-special';
|
410
|
+
break;
|
411
|
+
case 6:
|
412
|
+
ret = 'regex-class-special-escape';
|
413
|
+
break;
|
414
|
+
case 7:
|
415
|
+
ret = 'regex-class-extra-escaped';
|
416
|
+
break;
|
417
|
+
default:
|
418
|
+
throw 'Unexpected character inside class, beginning ' +
|
419
|
+
source.lookAheadRegex(/^[\s\S]+$/)[0] + ' and of length '+
|
420
|
+
source.lookAheadRegex(/^[\s\S]+$/)[0].length; // Shouldn't reach here
|
421
|
+
}
|
422
|
+
}
|
423
|
+
// Fix: Add this as a token property in the parser instead?
|
424
|
+
if (charClassRangeBegun) {
|
425
|
+
charClassRangeBegun = false;
|
426
|
+
ret += '-end-range';
|
427
|
+
}
|
428
|
+
else if (source.equals('-')) {
|
429
|
+
charClassRangeBegun = true;
|
430
|
+
ret += '-begin-range';
|
431
|
+
}
|
432
|
+
return ret;
|
433
|
+
}
|
434
|
+
|
435
|
+
// Changed [\s\S] to [^\n] to avoid accidentally grabbing a terminating (auto-inserted place-holder?) newline
|
436
|
+
var outside_class_meta = /^(?:\\(?:(0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?)|([1-9]\d*)|(x[\dA-Fa-f]{2})|(u[\dA-Fa-f]{4})|(c[A-Za-z])|([bBdDfnrsStvwW0])|([?*+])|([.\\[$|{])|([^\n]))|([?*+]\??)|({\d+(?:,\d*)?}\??))/;
|
437
|
+
function outside_class (source, setState) {
|
438
|
+
if ((ucl = unicode_class(source, 'outside'))) {
|
439
|
+
return ucl;
|
440
|
+
}
|
441
|
+
switch (_lookAheadMatches(source, outside_class_meta)) {
|
442
|
+
case 1:
|
443
|
+
return 'regex-octal';
|
444
|
+
case 2:
|
445
|
+
return 'regex-ascii';
|
446
|
+
case 3:
|
447
|
+
return 'regex-hex';
|
448
|
+
case 4:
|
449
|
+
return 'regex-unicode-escape';
|
450
|
+
case 5:
|
451
|
+
return 'regex-ascii-control';
|
452
|
+
case 6:
|
453
|
+
return 'regex-special-escape';
|
454
|
+
case 7:
|
455
|
+
return 'regex-quantifier-escape'; // Fix: could probably just merge with escaped-special
|
456
|
+
case 8:
|
457
|
+
return 'regex-escaped-special';
|
458
|
+
case 9:
|
459
|
+
return 'regex-extra-escaped';
|
460
|
+
case 10:
|
461
|
+
return 'regex-quantifiers';
|
462
|
+
case 11:
|
463
|
+
return 'regex-repetition';
|
464
|
+
default:
|
465
|
+
if (config.literal && source.lookAhead(config.literal_initial, true)) {
|
466
|
+
if (!initialFound) {
|
467
|
+
initialFound = true;
|
468
|
+
return 'regex-literal-begin';
|
469
|
+
}
|
470
|
+
endFound = true;
|
471
|
+
setState(beginFlags);
|
472
|
+
return 'regex-literal-end';
|
473
|
+
}
|
474
|
+
if (source.lookAhead('|', true)) {
|
475
|
+
return 'regex-alternator';
|
476
|
+
}
|
477
|
+
if (source.lookAheadRegex(/^\\$/, true)) {
|
478
|
+
return 'regex-bad-character';
|
479
|
+
}
|
480
|
+
source.next();
|
481
|
+
return 'regex-character';
|
482
|
+
}
|
483
|
+
}
|
484
|
+
function beginFlags (source, setState) {
|
485
|
+
var endFlags = source.lookAheadRegex(new RegExp('^[' + possibleFlags + ']*', ''), true);
|
486
|
+
if (endFlags == null) {
|
487
|
+
// Unrecognized flag used in regular expression literal
|
488
|
+
return 'regex-bad-character';
|
489
|
+
}
|
490
|
+
// Already confirmed validity earlier
|
491
|
+
setState(finished);
|
492
|
+
return 'regex-flags';
|
493
|
+
}
|
494
|
+
function finished () {
|
495
|
+
throw StopIteration;
|
496
|
+
}
|
497
|
+
|
498
|
+
function customOutsideClass (source, setState) {
|
499
|
+
if (config.named_backreferences && source.lookAheadRegex(/^\\k<([\w$]+)>/, true)) {
|
500
|
+
return 'regex-named-backreference';
|
501
|
+
}
|
502
|
+
if (_hasFlag('x') && source.lookAheadRegex(/^(?:#.*)+?/, true)) { // Fix: lookAheadRegex will avoid new lines; added extra '?' at end
|
503
|
+
// Regex should be /^(?:\s+|#.*)+?/ but this was problematic
|
504
|
+
return 'regex-free-spacing-mode';
|
505
|
+
}
|
506
|
+
|
507
|
+
if (source.lookAhead('[', true)) {
|
508
|
+
if (source.lookAheadRegex(/^\^?]/, true)) {
|
509
|
+
return config.empty_char_class ? 'regex-empty-class' : 'regex-bad-character';
|
510
|
+
}
|
511
|
+
if (source.equals('^')) {
|
512
|
+
negatedCharClass = true;
|
513
|
+
}
|
514
|
+
setState(inside_class);
|
515
|
+
return 'regex-class-begin';
|
516
|
+
}
|
517
|
+
|
518
|
+
// Unmatched ending parentheses
|
519
|
+
if (source.lookAhead(')', true)) {
|
520
|
+
return 'regex-ending-group';
|
521
|
+
}
|
522
|
+
if (source.lookAhead('(', true)) {
|
523
|
+
if (config.mode_modifier && mode_modifier_begun) {
|
524
|
+
var mode_modifier = source.lookAheadRegex(/^\?([imsx]+)\)/, true);
|
525
|
+
if (mode_modifier) { // We know it should exist if we're here
|
526
|
+
// addFlags(mode_modifier[1]); // Handle flags earlier
|
527
|
+
mode_modifier_begun = false;
|
528
|
+
return 'regex-mode-modifier';
|
529
|
+
}
|
530
|
+
}
|
531
|
+
if (source.lookAheadRegex(/^\?#[^)]*\)/, true)) { // No apparent nesting of comments?
|
532
|
+
return 'regex-comment-pattern';
|
533
|
+
}
|
534
|
+
|
535
|
+
var ret;
|
536
|
+
if (source.lookAheadRegex(/^(?!\?)/, true)) {
|
537
|
+
ret = 'regex-capturing-group';
|
538
|
+
}
|
539
|
+
if (source.lookAheadRegex(/^\?<([$\w]+)>/, true)) {
|
540
|
+
ret = 'regex-named-capturing-group';
|
541
|
+
}
|
542
|
+
if (source.lookAheadRegex(/^\?[:=!]/, true)) {
|
543
|
+
ret = 'regex-grouping';
|
544
|
+
}
|
545
|
+
if (!ret) {
|
546
|
+
return 'regex-bad-character'; // 'Uncaught parenthetical in tokenizing regular expression';
|
547
|
+
}
|
548
|
+
return ret;
|
549
|
+
}
|
550
|
+
return outside_class(source, setState);
|
551
|
+
}
|
552
|
+
|
553
|
+
return function(source, startState) {
|
554
|
+
return noWSTokenizer(source, startState || customOutsideClass);
|
555
|
+
};
|
556
|
+
})();
|
557
|
+
|
558
|
+
|
559
|
+
function resetStateVariables () {
|
560
|
+
initialFound = false, endFound = false, charClassRangeBegun = false, negatedCharClass = false,
|
561
|
+
mode_modifier_begun = false;
|
562
|
+
flags = '';
|
563
|
+
if (config.flags) { // Reset to configuration value
|
564
|
+
_addFlags(config.flags);
|
565
|
+
}
|
566
|
+
groupTypes = [],
|
567
|
+
groupCounts = {
|
568
|
+
'capturing-group': {currentCount: 0},
|
569
|
+
'named-capturing-group': {currentCount: 0},
|
570
|
+
'grouping': {currentCount: 0}
|
571
|
+
};
|
572
|
+
}
|
573
|
+
|
574
|
+
// Parser
|
575
|
+
function parseRegex (source) {
|
576
|
+
resetStateVariables();
|
577
|
+
|
578
|
+
var tokens = tokenizeRegex(source);
|
579
|
+
|
580
|
+
if (config.literal && !source.equals(config.literal_initial)) {
|
581
|
+
throw 'Regular expression literals must include a beginning "'+config.literal_initial+'"';
|
582
|
+
}
|
583
|
+
|
584
|
+
if (config.literal) {
|
585
|
+
var regex = new RegExp('^[\\s\\S]*' + _esc(config.literal_initial) + '([' + possibleFlags + ']*)$', '');
|
586
|
+
var endFlags = source.lookAheadRegex(regex);
|
587
|
+
if (endFlags == null) {
|
588
|
+
// Unrecognized flag used in regular expression literal
|
589
|
+
}
|
590
|
+
else {
|
591
|
+
_addFlags(endFlags[1]);
|
592
|
+
}
|
593
|
+
}
|
594
|
+
else if (config.mode_modifier) { // Fix: We are not allowing both a mode modifier and
|
595
|
+
// literal syntax (presumably redundant)
|
596
|
+
var mode_modifier = source.lookAheadRegex(/^\(\?([imsx]+)\)/, true);
|
597
|
+
if (mode_modifier) {
|
598
|
+
mode_modifier_begun = true;
|
599
|
+
_addFlags(mode_modifier[1]);
|
600
|
+
}
|
601
|
+
}
|
602
|
+
var iter = {
|
603
|
+
next: function() {
|
604
|
+
try {
|
605
|
+
var level_num,
|
606
|
+
token = tokens.next(),
|
607
|
+
style = token.style,
|
608
|
+
content = token.content,
|
609
|
+
lastChildren, currentChildren, currentCount, currentGroupStyle,
|
610
|
+
type = style.replace(/^regex-/, '');
|
611
|
+
|
612
|
+
switch (type) {
|
613
|
+
case 'ending-group':
|
614
|
+
if (!groupTypes.length) {
|
615
|
+
// Closing parenthesis without an opening one
|
616
|
+
token.style = 'regex-bad-character';
|
617
|
+
}
|
618
|
+
else {
|
619
|
+
level_num = config.max_levels ?
|
620
|
+
((groupTypes.length % config.max_levels) || config.max_levels) : groupTypes.length;
|
621
|
+
var popped = groupTypes.pop();
|
622
|
+
// Allow numbered classes
|
623
|
+
currentChildren = groupCounts[popped];
|
624
|
+
while (currentChildren && currentChildren.currentChildren &&
|
625
|
+
currentChildren.currentChildren.currentChildren) { // Find lowest level parent
|
626
|
+
currentChildren = currentChildren.currentChildren;
|
627
|
+
}
|
628
|
+
delete currentChildren.currentChildren; // Use parent to delete children
|
629
|
+
currentCount = currentChildren.currentCount; // Use parent as new child to get current count
|
630
|
+
currentCount = config.max_alternating ?
|
631
|
+
((currentCount % config.max_alternating) || config.max_alternating) : currentCount;
|
632
|
+
|
633
|
+
currentGroupStyle = level_num + '-' + currentCount;
|
634
|
+
token.style = 'regex-ending-' + popped + ' regex-ending-' + popped + currentGroupStyle;
|
635
|
+
if (config.inner_group_mode === 'uniform') { // 'type' is automatically processed for ending
|
636
|
+
token.style += ' regex-group-' + currentGroupStyle;
|
637
|
+
}
|
638
|
+
}
|
639
|
+
break;
|
640
|
+
case 'capturing-group':
|
641
|
+
case 'named-capturing-group':
|
642
|
+
case 'grouping':
|
643
|
+
lastChildren = groupCounts[type],
|
644
|
+
currentChildren = groupCounts[type].currentChildren;
|
645
|
+
while (currentChildren) {
|
646
|
+
lastChildren = currentChildren;
|
647
|
+
currentChildren = currentChildren.currentChildren;
|
648
|
+
}
|
649
|
+
currentCount = ++lastChildren.currentCount;
|
650
|
+
if (!lastChildren.currentChildren) {
|
651
|
+
lastChildren.currentChildren = {currentCount: 0};
|
652
|
+
}
|
653
|
+
|
654
|
+
groupTypes.push(type);
|
655
|
+
level_num = config.max_levels ?
|
656
|
+
((groupTypes.length % config.max_levels) || config.max_levels) : groupTypes.length;
|
657
|
+
// Allow numbered classes
|
658
|
+
currentCount = config.max_alternating ?
|
659
|
+
((currentCount % config.max_alternating) || config.max_alternating) : currentCount;
|
660
|
+
currentGroupStyle = level_num + '-' + currentCount;
|
661
|
+
var currentStyle = ' ' + token.style;
|
662
|
+
|
663
|
+
|
664
|
+
if (config.inner_group_mode) {
|
665
|
+
token.style += config.inner_group_mode === 'type' ?
|
666
|
+
currentStyle + currentGroupStyle :
|
667
|
+
' regex-group-' + currentGroupStyle;
|
668
|
+
token.style += ' ' + style + currentGroupStyle;
|
669
|
+
}
|
670
|
+
else {
|
671
|
+
token.style += currentStyle + currentGroupStyle;
|
672
|
+
}
|
673
|
+
lastChildren.currentGroupStyle = currentGroupStyle;
|
674
|
+
lastChildren.currentStyle = currentStyle;
|
675
|
+
break;
|
676
|
+
// Allow ability to extract information on character equivalence, e.g., for use on tooltips
|
677
|
+
case 'class-octal': case 'octal': // Fall-through
|
678
|
+
case 'class-octal-begin-range': case 'class-octal-end-range': // Fall-through
|
679
|
+
case 'class-ascii-begin-range': case 'class-ascii-end-range': // Fall-through
|
680
|
+
case 'class-ascii': case 'ascii': // Firefox apparently treats ascii here as octals
|
681
|
+
token.equivalent = String.fromCharCode(parseInt(content.replace(/^\\/, ''), 8));
|
682
|
+
break;
|
683
|
+
case 'class-hex': case 'hex': // Fall-through
|
684
|
+
case 'class-hex-begin-range': case 'class-hex-end-range': // Fall-through
|
685
|
+
case 'class-unicode-escape': case 'class-unicode-escape-begin-range': // Fall-through
|
686
|
+
case 'class-unicode-escape-end-range': case 'unicode-escape':
|
687
|
+
token.equivalent = String.fromCharCode(parseInt('0x'+content.replace(/^\\(x|u)/, ''), 16));
|
688
|
+
break;
|
689
|
+
case 'class-ascii-control-begin-range': case 'class-ascii-control-end-range': // Fall-through
|
690
|
+
case 'class-ascii-control': case 'ascii-control':
|
691
|
+
token.equivalent = String.fromCharCode(content.replace(/^\\c/, '').charCodeAt(0) - 64);
|
692
|
+
break;
|
693
|
+
case 'class-special-escape': case 'class-special-escape-begin-range': // Fall-through
|
694
|
+
case 'class-special-escape-end-range': case 'special-escape':
|
695
|
+
// Others to ignore (though some (\d, \s, \w) could have theirs listed): bBdDsSwW
|
696
|
+
var chr = content.replace(/^\\/, ''),
|
697
|
+
pos = 'fnrtv'.indexOf(chr),
|
698
|
+
specialEquivs = '\f\n\r\t\v';
|
699
|
+
if (pos !== -1) { // May not be visible without conversion to codepoints
|
700
|
+
var c = specialEquivs.charAt(pos);
|
701
|
+
var hex = c.charCodeAt(0).toString(16).toUpperCase();
|
702
|
+
token.display = 'U+' + Array(5 - hex.length).join('0') + hex;
|
703
|
+
token.equivalent = c;
|
704
|
+
}
|
705
|
+
break;
|
706
|
+
case 'regex-class-escaped-special': case 'regex-class-escaped-special-begin-range':
|
707
|
+
case 'regex-class-escaped-special-end-range':
|
708
|
+
case 'class-extra-escaped-begin-range': case 'class-extra-escaped-end-range':
|
709
|
+
case 'class-extra-escaped': case 'extra-escaped':
|
710
|
+
token.equivalent = content.replace(/^\\/, '');
|
711
|
+
break;
|
712
|
+
default:
|
713
|
+
if (config.unicode_mode === 'store') {
|
714
|
+
if (config.unicode_categories) {
|
715
|
+
var cat = type.match(/regex-unicode-category-(\w+?)-(?:outside|inside)/);
|
716
|
+
if (cat) {
|
717
|
+
token.equivalent = _expandRange('categories', cat[1]) || '';
|
718
|
+
token.unicode = true;
|
719
|
+
break;
|
720
|
+
}
|
721
|
+
}
|
722
|
+
if (config.unicode_blocks) {
|
723
|
+
var block = type.match(/regex-unicode-block-(\w+)-(?:outside|inside)/);
|
724
|
+
if (block) {
|
725
|
+
token.equivalent = _expandRange('blocks', block[1]) || '';
|
726
|
+
token.unicode = true;
|
727
|
+
break;
|
728
|
+
}
|
729
|
+
}
|
730
|
+
if (config.unicode_scripts) {
|
731
|
+
var script = type.match(/regex-unicode-script-(\w+)-(?:outside|inside)/);
|
732
|
+
if (script) {
|
733
|
+
token.equivalent = _expandRange('scripts', script[1]) || '';
|
734
|
+
token.unicode = true;
|
735
|
+
break;
|
736
|
+
}
|
737
|
+
}
|
738
|
+
}
|
739
|
+
break;
|
740
|
+
}
|
741
|
+
if (config.inner_group_mode && type !== 'ending-group' && type !== 'capturing-group' && type !== 'named-capturing-group' &&
|
742
|
+
type !== 'grouping') {
|
743
|
+
level_num = config.max_levels ?
|
744
|
+
((groupTypes.length % config.max_levels) || config.max_levels) : groupTypes.length;
|
745
|
+
// Allow numbered classes
|
746
|
+
var last = groupTypes[groupTypes.length - 1];
|
747
|
+
if (last) {
|
748
|
+
currentChildren = groupCounts[last];
|
749
|
+
while (currentChildren && currentChildren.currentChildren &&
|
750
|
+
currentChildren.currentChildren.currentChildren) { // Find lowest level parent
|
751
|
+
currentChildren = currentChildren.currentChildren;
|
752
|
+
}
|
753
|
+
token.style += config.inner_group_mode === 'type' ?
|
754
|
+
currentChildren.currentStyle + currentChildren.currentGroupStyle :
|
755
|
+
' regex-group-' + currentChildren.currentGroupStyle;
|
756
|
+
}
|
757
|
+
}
|
758
|
+
if (!source.more()) {
|
759
|
+
if (groupTypes.length) { // Opening group without a closing parenthesis
|
760
|
+
token.style = 'regex-bad-character';
|
761
|
+
}
|
762
|
+
else if (config.literal && !endFound) {
|
763
|
+
//throw 'Regular expression literals must include a (non-escaped) ending "' +
|
764
|
+
// config.literal_initial + '" (with optional flags).';
|
765
|
+
token.style = 'regex-bad-character';
|
766
|
+
}
|
767
|
+
}
|
768
|
+
}
|
769
|
+
catch (e) {
|
770
|
+
if (e != StopIteration) {
|
771
|
+
alert(e + '::'+e.lineNumber);
|
772
|
+
}
|
773
|
+
throw e;
|
774
|
+
}
|
775
|
+
return token;
|
776
|
+
},
|
777
|
+
copy: function() {
|
778
|
+
var _initialFound = initialFound, _charClassRangeBegun = charClassRangeBegun,
|
779
|
+
_negatedCharClass = negatedCharClass, _flags = flags,
|
780
|
+
_endFound = endFound, _groupTypes = groupTypes,
|
781
|
+
_mode_modifier_begun = mode_modifier_begun,
|
782
|
+
_tokenState = tokens.state,
|
783
|
+
_groupCounts = _copyObj(groupCounts, true);
|
784
|
+
return function(source) {
|
785
|
+
initialFound = _initialFound;
|
786
|
+
charClassRangeBegun = _charClassRangeBegun;
|
787
|
+
negatedCharClass = _negatedCharClass;
|
788
|
+
flags = _flags;
|
789
|
+
endFound = _endFound;
|
790
|
+
groupTypes = _groupTypes;
|
791
|
+
mode_modifier_begun = _mode_modifier_begun;
|
792
|
+
tokens = tokenizeRegex(source, _tokenState);
|
793
|
+
groupCounts = _groupCounts;
|
794
|
+
return iter;
|
795
|
+
};
|
796
|
+
}
|
797
|
+
};
|
798
|
+
return iter;
|
799
|
+
}
|
800
|
+
|
801
|
+
// Parser object
|
802
|
+
return {
|
803
|
+
make: parseRegex,
|
804
|
+
configure: function (parserConfig) {
|
805
|
+
var unicode = this.unicode;
|
806
|
+
|
807
|
+
// Overridable
|
808
|
+
_setOptions('unicode_mode', 'simple');
|
809
|
+
_setOptions(regexConfigBooleanOptions, false);
|
810
|
+
if (parserConfig.unicode_classes) {
|
811
|
+
_setOptions(['unicode_blocks', 'unicode_scripts', 'unicode_categories'], true);
|
812
|
+
}
|
813
|
+
switch (parserConfig.flavor) {
|
814
|
+
case 'ecma-262-ed5':
|
815
|
+
_setOptions(['empty_char_class'], true);
|
816
|
+
// Fall-through
|
817
|
+
case 'ecma-262-ed3':
|
818
|
+
config.possible_flags = 'gim'; // If wish for Firefox 'y', add it on parserConfig
|
819
|
+
break;
|
820
|
+
case 'all':
|
821
|
+
default:
|
822
|
+
_setOptions(regexConfigBooleanOptions, true);
|
823
|
+
break;
|
824
|
+
}
|
825
|
+
|
826
|
+
// Setting with possible overrides
|
827
|
+
for (var opt in parserConfig) {
|
828
|
+
if ((/^regex_/).test(opt)) { // Use for compatibility with JS+Regex
|
829
|
+
config[opt.replace(/^regex_/, '')] = parserConfig[opt];
|
830
|
+
continue;
|
831
|
+
}
|
832
|
+
config[opt] = parserConfig[opt];
|
833
|
+
}
|
834
|
+
|
835
|
+
// Post-processing
|
836
|
+
if (config.possible_flags) {
|
837
|
+
_setPossibleFlags(config.possible_flags);
|
838
|
+
}
|
839
|
+
|
840
|
+
if (config.unicode_mode !== 'simple') {
|
841
|
+
if (!unicode) {
|
842
|
+
throw 'You must include the parseregex-unicode.js file in order to use validate or storage mode Unicode';
|
843
|
+
}
|
844
|
+
}
|
845
|
+
}
|
846
|
+
};
|
847
|
+
})();
|