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,419 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved.
|
3
|
+
The copyrights embodied in the content of this file are licensed by
|
4
|
+
Yahoo! Inc. under the BSD (revised) open source license
|
5
|
+
|
6
|
+
@author Dan Vlad Dascalescu <dandv@yahoo-inc.com>
|
7
|
+
|
8
|
+
|
9
|
+
Parse function for PHP. Makes use of the tokenizer from tokenizephp.js.
|
10
|
+
Based on parsejavascript.js by Marijn Haverbeke.
|
11
|
+
|
12
|
+
|
13
|
+
Features:
|
14
|
+
+ special "deprecated" style for PHP4 keywords like 'var'
|
15
|
+
+ support for PHP 5.3 keywords: 'namespace', 'use'
|
16
|
+
+ 911 predefined constants, 1301 predefined functions, 105 predeclared classes
|
17
|
+
from a typical PHP installation in a LAMP environment
|
18
|
+
+ new feature: syntax error flagging, thus enabling strict parsing of:
|
19
|
+
+ function definitions with explicitly or implicitly typed arguments and default values
|
20
|
+
+ modifiers (public, static etc.) applied to method and member definitions
|
21
|
+
+ foreach(array_expression as $key [=> $value]) loops
|
22
|
+
+ differentiation between single-quoted strings and double-quoted interpolating strings
|
23
|
+
|
24
|
+
*/
|
25
|
+
|
26
|
+
|
27
|
+
// add the Array.indexOf method for JS engines that don't support it (e.g. IE)
|
28
|
+
// code from https://developer.mozilla.org/En/Core_JavaScript_1.5_Reference/Global_Objects/Array/IndexOf
|
29
|
+
if (!Array.prototype.indexOf)
|
30
|
+
{
|
31
|
+
Array.prototype.indexOf = function(elt /*, from*/)
|
32
|
+
{
|
33
|
+
var len = this.length;
|
34
|
+
|
35
|
+
var from = Number(arguments[1]) || 0;
|
36
|
+
from = (from < 0)
|
37
|
+
? Math.ceil(from)
|
38
|
+
: Math.floor(from);
|
39
|
+
if (from < 0)
|
40
|
+
from += len;
|
41
|
+
|
42
|
+
for (; from < len; from++)
|
43
|
+
{
|
44
|
+
if (from in this &&
|
45
|
+
this[from] === elt)
|
46
|
+
return from;
|
47
|
+
}
|
48
|
+
return -1;
|
49
|
+
};
|
50
|
+
}
|
51
|
+
|
52
|
+
|
53
|
+
var PHPParser = Editor.Parser = (function() {
|
54
|
+
// Token types that can be considered to be atoms, part of operator expressions
|
55
|
+
var atomicTypes = {
|
56
|
+
"atom": true, "number": true, "variable": true, "string": true
|
57
|
+
};
|
58
|
+
// Constructor for the lexical context objects.
|
59
|
+
function PHPLexical(indented, column, type, align, prev, info) {
|
60
|
+
// indentation at start of this line
|
61
|
+
this.indented = indented;
|
62
|
+
// column at which this scope was opened
|
63
|
+
this.column = column;
|
64
|
+
// type of scope ('stat' (statement), 'form' (special form), '[', '{', or '(')
|
65
|
+
this.type = type;
|
66
|
+
// '[', '{', or '(' blocks that have any text after their opening
|
67
|
+
// character are said to be 'aligned' -- any lines below are
|
68
|
+
// indented all the way to the opening character.
|
69
|
+
if (align != null)
|
70
|
+
this.align = align;
|
71
|
+
// Parent scope, if any.
|
72
|
+
this.prev = prev;
|
73
|
+
this.info = info;
|
74
|
+
}
|
75
|
+
|
76
|
+
// PHP indentation rules
|
77
|
+
function indentPHP(lexical) {
|
78
|
+
return function(firstChars) {
|
79
|
+
var firstChar = firstChars && firstChars.charAt(0), type = lexical.type;
|
80
|
+
var closing = firstChar == type;
|
81
|
+
if (type == "form" && firstChar == "{")
|
82
|
+
return lexical.indented;
|
83
|
+
else if (type == "stat" || type == "form")
|
84
|
+
return lexical.indented + indentUnit;
|
85
|
+
else if (lexical.info == "switch" && !closing)
|
86
|
+
return lexical.indented + (/^(?:case|default)\b/.test(firstChars) ? indentUnit : 2 * indentUnit);
|
87
|
+
else if (lexical.align)
|
88
|
+
return lexical.column - (closing ? 1 : 0);
|
89
|
+
else
|
90
|
+
return lexical.indented + (closing ? 0 : indentUnit);
|
91
|
+
};
|
92
|
+
}
|
93
|
+
|
94
|
+
// The parser-iterator-producing function itself.
|
95
|
+
function parsePHP(input, basecolumn) {
|
96
|
+
// Wrap the input in a token stream
|
97
|
+
var tokens = tokenizePHP(input);
|
98
|
+
// The parser state. cc is a stack of actions that have to be
|
99
|
+
// performed to finish the current statement. For example we might
|
100
|
+
// know that we still need to find a closing parenthesis and a
|
101
|
+
// semicolon. Actions at the end of the stack go first. It is
|
102
|
+
// initialized with an infinitely looping action that consumes
|
103
|
+
// whole statements.
|
104
|
+
var cc = [statements];
|
105
|
+
// The lexical scope, used mostly for indentation.
|
106
|
+
var lexical = new PHPLexical((basecolumn || 0) - indentUnit, 0, "block", false);
|
107
|
+
// Current column, and the indentation at the start of the current
|
108
|
+
// line. Used to create lexical scope objects.
|
109
|
+
var column = 0;
|
110
|
+
var indented = 0;
|
111
|
+
// Variables which are used by the mark, cont, and pass functions
|
112
|
+
// below to communicate with the driver loop in the 'next' function.
|
113
|
+
var consume, marked;
|
114
|
+
|
115
|
+
// The iterator object.
|
116
|
+
var parser = {next: next, copy: copy};
|
117
|
+
|
118
|
+
// parsing is accomplished by calling next() repeatedly
|
119
|
+
function next(){
|
120
|
+
// Start by performing any 'lexical' actions (adjusting the
|
121
|
+
// lexical variable), or the operations below will be working
|
122
|
+
// with the wrong lexical state.
|
123
|
+
while(cc[cc.length - 1].lex)
|
124
|
+
cc.pop()();
|
125
|
+
|
126
|
+
// Fetch the next token.
|
127
|
+
var token = tokens.next();
|
128
|
+
|
129
|
+
// Adjust column and indented.
|
130
|
+
if (token.type == "whitespace" && column == 0)
|
131
|
+
indented = token.value.length;
|
132
|
+
column += token.value.length;
|
133
|
+
if (token.content == "\n"){
|
134
|
+
indented = column = 0;
|
135
|
+
// If the lexical scope's align property is still undefined at
|
136
|
+
// the end of the line, it is an un-aligned scope.
|
137
|
+
if (!("align" in lexical))
|
138
|
+
lexical.align = false;
|
139
|
+
// Newline tokens get an indentation function associated with
|
140
|
+
// them.
|
141
|
+
token.indentation = indentPHP(lexical);
|
142
|
+
}
|
143
|
+
// No more processing for meaningless tokens.
|
144
|
+
if (token.type == "whitespace" || token.type == "comment"
|
145
|
+
|| token.type == "string_not_terminated" )
|
146
|
+
return token;
|
147
|
+
// When a meaningful token is found and the lexical scope's
|
148
|
+
// align is undefined, it is an aligned scope.
|
149
|
+
if (!("align" in lexical))
|
150
|
+
lexical.align = true;
|
151
|
+
|
152
|
+
// Execute actions until one 'consumes' the token and we can
|
153
|
+
// return it. 'marked' is used to change the style of the current token.
|
154
|
+
while(true) {
|
155
|
+
consume = marked = false;
|
156
|
+
// Take and execute the topmost action.
|
157
|
+
var action = cc.pop();
|
158
|
+
action(token);
|
159
|
+
|
160
|
+
if (consume){
|
161
|
+
if (marked)
|
162
|
+
token.style = marked;
|
163
|
+
// Here we differentiate between local and global variables.
|
164
|
+
return token;
|
165
|
+
}
|
166
|
+
}
|
167
|
+
return 1; // Firebug workaround for http://code.google.com/p/fbug/issues/detail?id=1239#c1
|
168
|
+
}
|
169
|
+
|
170
|
+
// This makes a copy of the parser state. It stores all the
|
171
|
+
// stateful variables in a closure, and returns a function that
|
172
|
+
// will restore them when called with a new input stream. Note
|
173
|
+
// that the cc array has to be copied, because it is contantly
|
174
|
+
// being modified. Lexical objects are not mutated, so they can
|
175
|
+
// be shared between runs of the parser.
|
176
|
+
function copy(){
|
177
|
+
var _lexical = lexical, _cc = cc.concat([]), _tokenState = tokens.state;
|
178
|
+
|
179
|
+
return function copyParser(input){
|
180
|
+
lexical = _lexical;
|
181
|
+
cc = _cc.concat([]); // copies the array
|
182
|
+
column = indented = 0;
|
183
|
+
tokens = tokenizePHP(input, _tokenState);
|
184
|
+
return parser;
|
185
|
+
};
|
186
|
+
}
|
187
|
+
|
188
|
+
// Helper function for pushing a number of actions onto the cc
|
189
|
+
// stack in reverse order.
|
190
|
+
function push(fs){
|
191
|
+
for (var i = fs.length - 1; i >= 0; i--)
|
192
|
+
cc.push(fs[i]);
|
193
|
+
}
|
194
|
+
// cont and pass are used by the action functions to add other
|
195
|
+
// actions to the stack. cont will cause the current token to be
|
196
|
+
// consumed, pass will leave it for the next action.
|
197
|
+
function cont(){
|
198
|
+
push(arguments);
|
199
|
+
consume = true;
|
200
|
+
}
|
201
|
+
function pass(){
|
202
|
+
push(arguments);
|
203
|
+
consume = false;
|
204
|
+
}
|
205
|
+
// Used to change the style of the current token.
|
206
|
+
function mark(style){
|
207
|
+
marked = style;
|
208
|
+
}
|
209
|
+
// Add a lyer of style to the current token, for example syntax-error
|
210
|
+
function mark_add(style){
|
211
|
+
marked = marked + ' ' + style;
|
212
|
+
}
|
213
|
+
|
214
|
+
// Push a new lexical context of the given type.
|
215
|
+
function pushlex(type, info) {
|
216
|
+
var result = function pushlexing() {
|
217
|
+
lexical = new PHPLexical(indented, column, type, null, lexical, info)
|
218
|
+
};
|
219
|
+
result.lex = true;
|
220
|
+
return result;
|
221
|
+
}
|
222
|
+
// Pop off the current lexical context.
|
223
|
+
function poplex(){
|
224
|
+
if (lexical.prev)
|
225
|
+
lexical = lexical.prev;
|
226
|
+
}
|
227
|
+
poplex.lex = true;
|
228
|
+
// The 'lex' flag on these actions is used by the 'next' function
|
229
|
+
// to know they can (and have to) be ran before moving on to the
|
230
|
+
// next token.
|
231
|
+
|
232
|
+
// Creates an action that discards tokens until it finds one of
|
233
|
+
// the given type. This will ignore (and recover from) syntax errors.
|
234
|
+
function expect(wanted){
|
235
|
+
return function expecting(token){
|
236
|
+
if (token.type == wanted) cont(); // consume the token
|
237
|
+
else {
|
238
|
+
cont(arguments.callee); // continue expecting() - call itself
|
239
|
+
}
|
240
|
+
};
|
241
|
+
}
|
242
|
+
|
243
|
+
// Require a specific token type, or one of the tokens passed in the 'wanted' array
|
244
|
+
// Used to detect blatant syntax errors. 'execute' is used to pass extra code
|
245
|
+
// to be executed if the token is matched. For example, a '(' match could
|
246
|
+
// 'execute' a cont( compasep(funcarg), require(")") )
|
247
|
+
function require(wanted, execute){
|
248
|
+
return function requiring(token){
|
249
|
+
var ok;
|
250
|
+
var type = token.type;
|
251
|
+
if (typeof(wanted) == "string")
|
252
|
+
ok = (type == wanted) -1;
|
253
|
+
else
|
254
|
+
ok = wanted.indexOf(type);
|
255
|
+
if (ok >= 0) {
|
256
|
+
if (execute && typeof(execute[ok]) == "function") pass(execute[ok]);
|
257
|
+
else cont();
|
258
|
+
}
|
259
|
+
else {
|
260
|
+
if (!marked) mark(token.style);
|
261
|
+
mark_add("syntax-error");
|
262
|
+
cont(arguments.callee);
|
263
|
+
}
|
264
|
+
};
|
265
|
+
}
|
266
|
+
|
267
|
+
// Looks for a statement, and then calls itself.
|
268
|
+
function statements(token){
|
269
|
+
return pass(statement, statements);
|
270
|
+
}
|
271
|
+
// Dispatches various types of statements based on the type of the current token.
|
272
|
+
function statement(token){
|
273
|
+
var type = token.type;
|
274
|
+
if (type == "keyword a") cont(pushlex("form"), expression, altsyntax, statement, poplex);
|
275
|
+
else if (type == "keyword b") cont(pushlex("form"), altsyntax, statement, poplex);
|
276
|
+
else if (type == "{") cont(pushlex("}"), block, poplex);
|
277
|
+
else if (type == "function") funcdef();
|
278
|
+
// technically, "class implode {...}" is correct, but we'll flag that as an error because it overrides a predefined function
|
279
|
+
else if (type == "class") classdef();
|
280
|
+
else if (type == "foreach") cont(pushlex("form"), require("("), pushlex(")"), expression, require("as"), require("variable"), /* => $value */ expect(")"), altsyntax, poplex, statement, poplex);
|
281
|
+
else if (type == "for") cont(pushlex("form"), require("("), pushlex(")"), expression, require(";"), expression, require(";"), expression, require(")"), altsyntax, poplex, statement, poplex);
|
282
|
+
// public final function foo(), protected static $bar;
|
283
|
+
else if (type == "modifier") cont(require(["modifier", "variable", "function", "abstract"],
|
284
|
+
[null, commasep(require("variable")), funcdef, absfun]));
|
285
|
+
else if (type == "abstract") abs();
|
286
|
+
else if (type == "switch") cont(pushlex("form"), require("("), expression, require(")"), pushlex("}", "switch"), require([":", "{"]), block, poplex, poplex);
|
287
|
+
else if (type == "case") cont(expression, require(":"));
|
288
|
+
else if (type == "default") cont(require(":"));
|
289
|
+
else if (type == "catch") cont(pushlex("form"), require("("), require("t_string"), require("variable"), require(")"), statement, poplex);
|
290
|
+
else if (type == "const") cont(require("t_string")); // 'const static x=5' is a syntax error
|
291
|
+
// technically, "namespace implode {...}" is correct, but we'll flag that as an error because it overrides a predefined function
|
292
|
+
else if (type == "namespace") cont(namespacedef, require(";"));
|
293
|
+
// $variables may be followed by operators, () for variable function calls, or [] subscripts
|
294
|
+
else pass(pushlex("stat"), expression, require(";"), poplex);
|
295
|
+
}
|
296
|
+
// Dispatch expression types.
|
297
|
+
function expression(token){
|
298
|
+
var type = token.type;
|
299
|
+
if (atomicTypes.hasOwnProperty(type)) cont(maybeoperator);
|
300
|
+
else if (type == "<<<") cont(require("string"), maybeoperator); // heredoc/nowdoc
|
301
|
+
else if (type == "t_string") cont(maybe_double_colon, maybeoperator);
|
302
|
+
else if (type == "keyword c" || type == "operator") cont(expression);
|
303
|
+
// lambda
|
304
|
+
else if (type == "function") lambdadef();
|
305
|
+
// function call or parenthesized expression: $a = ($b + 1) * 2;
|
306
|
+
else if (type == "(") cont(pushlex(")"), commasep(expression), require(")"), poplex, maybeoperator);
|
307
|
+
}
|
308
|
+
// Called for places where operators, function calls, or subscripts are
|
309
|
+
// valid. Will skip on to the next action if none is found.
|
310
|
+
function maybeoperator(token){
|
311
|
+
var type = token.type;
|
312
|
+
if (type == "operator") {
|
313
|
+
if (token.content == "?") cont(expression, require(":"), expression); // ternary operator
|
314
|
+
else cont(expression);
|
315
|
+
}
|
316
|
+
else if (type == "(") cont(pushlex(")"), expression, commasep(expression), require(")"), poplex, maybeoperator /* $varfunc() + 3 */);
|
317
|
+
else if (type == "[") cont(pushlex("]"), expression, require("]"), maybeoperator /* for multidimensional arrays, or $func[$i]() */, poplex);
|
318
|
+
}
|
319
|
+
// A regular use of the double colon to specify a class, as in self::func() or myclass::$var;
|
320
|
+
// Differs from `namespace` or `use` in that only one class can be the parent; chains (A::B::$var) are a syntax error.
|
321
|
+
function maybe_double_colon(token) {
|
322
|
+
if (token.type == "t_double_colon")
|
323
|
+
// A::$var, A::func(), A::const
|
324
|
+
cont(require(["t_string", "variable"]), maybeoperator);
|
325
|
+
else {
|
326
|
+
// a t_string wasn't followed by ::, such as in a function call: foo()
|
327
|
+
pass(expression)
|
328
|
+
}
|
329
|
+
}
|
330
|
+
// the declaration or definition of a function
|
331
|
+
function funcdef() {
|
332
|
+
cont(require("t_string"), require("("), pushlex(")"), commasep(funcarg), require(")"), poplex, block);
|
333
|
+
}
|
334
|
+
// the declaration or definition of a lambda
|
335
|
+
function lambdadef() {
|
336
|
+
cont(require("("), pushlex(")"), commasep(funcarg), require(")"), maybe_lambda_use, poplex, require("{"), pushlex("}"), block, poplex);
|
337
|
+
}
|
338
|
+
// optional lambda 'use' statement
|
339
|
+
function maybe_lambda_use(token) {
|
340
|
+
if(token.type == "namespace") {
|
341
|
+
cont(require('('), commasep(funcarg), require(')'));
|
342
|
+
}
|
343
|
+
else {
|
344
|
+
pass(expression);
|
345
|
+
}
|
346
|
+
}
|
347
|
+
// the definition of a class
|
348
|
+
function classdef() {
|
349
|
+
cont(require("t_string"), expect("{"), pushlex("}"), block, poplex);
|
350
|
+
}
|
351
|
+
// either funcdef if the current token is "function", or the keyword "function" + funcdef
|
352
|
+
function absfun(token) {
|
353
|
+
if(token.type == "function") funcdef();
|
354
|
+
else cont(require(["function"], [funcdef]));
|
355
|
+
}
|
356
|
+
// the abstract class or function (with optional modifier)
|
357
|
+
function abs(token) {
|
358
|
+
cont(require(["modifier", "function", "class"], [absfun, funcdef, classdef]));
|
359
|
+
}
|
360
|
+
// Parses a comma-separated list of the things that are recognized
|
361
|
+
// by the 'what' argument.
|
362
|
+
function commasep(what){
|
363
|
+
function proceed(token) {
|
364
|
+
if (token.type == ",") cont(what, proceed);
|
365
|
+
}
|
366
|
+
return function commaSeparated() {
|
367
|
+
pass(what, proceed);
|
368
|
+
};
|
369
|
+
}
|
370
|
+
// Look for statements until a closing brace is found.
|
371
|
+
function block(token) {
|
372
|
+
if (token.type == "}") cont();
|
373
|
+
else pass(statement, block);
|
374
|
+
}
|
375
|
+
function empty_parens_if_array(token) {
|
376
|
+
if(token.content == "array")
|
377
|
+
cont(require("("), require(")"));
|
378
|
+
}
|
379
|
+
function maybedefaultparameter(token){
|
380
|
+
if (token.content == "=") cont(require(["t_string", "string", "number", "atom"], [empty_parens_if_array, null, null]));
|
381
|
+
}
|
382
|
+
function var_or_reference(token) {
|
383
|
+
if(token.type == "variable") cont(maybedefaultparameter);
|
384
|
+
else if(token.content == "&") cont(require("variable"), maybedefaultparameter);
|
385
|
+
}
|
386
|
+
// support for default arguments: http://us.php.net/manual/en/functions.arguments.php#functions.arguments.default
|
387
|
+
function funcarg(token){
|
388
|
+
// function foo(myclass $obj) {...} or function foo(myclass &objref) {...}
|
389
|
+
if (token.type == "t_string") cont(var_or_reference);
|
390
|
+
// function foo($var) {...} or function foo(&$ref) {...}
|
391
|
+
else var_or_reference(token);
|
392
|
+
}
|
393
|
+
|
394
|
+
// A namespace definition or use
|
395
|
+
function maybe_double_colon_def(token) {
|
396
|
+
if (token.type == "t_double_colon")
|
397
|
+
cont(namespacedef);
|
398
|
+
}
|
399
|
+
function namespacedef(token) {
|
400
|
+
pass(require("t_string"), maybe_double_colon_def);
|
401
|
+
}
|
402
|
+
|
403
|
+
function altsyntax(token){
|
404
|
+
if(token.content==':')
|
405
|
+
cont(altsyntaxBlock,poplex);
|
406
|
+
}
|
407
|
+
|
408
|
+
function altsyntaxBlock(token){
|
409
|
+
if (token.type == "altsyntaxend") cont(require(';'));
|
410
|
+
else pass(statement, altsyntaxBlock);
|
411
|
+
}
|
412
|
+
|
413
|
+
|
414
|
+
return parser;
|
415
|
+
}
|
416
|
+
|
417
|
+
return {make: parsePHP, electricChars: "{}:"};
|
418
|
+
|
419
|
+
})();
|
@@ -0,0 +1,116 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved.
|
3
|
+
The copyrights embodied in the content of this file are licensed by
|
4
|
+
Yahoo! Inc. under the BSD (revised) open source license
|
5
|
+
|
6
|
+
@author Dan Vlad Dascalescu <dandv@yahoo-inc.com>
|
7
|
+
|
8
|
+
Based on parsehtmlmixed.js by Marijn Haverbeke.
|
9
|
+
*/
|
10
|
+
|
11
|
+
var PHPHTMLMixedParser = Editor.Parser = (function() {
|
12
|
+
var processingInstructions = ["<?php"];
|
13
|
+
|
14
|
+
if (!(PHPParser && CSSParser && JSParser && XMLParser))
|
15
|
+
throw new Error("PHP, CSS, JS, and XML parsers must be loaded for PHP+HTML mixed mode to work.");
|
16
|
+
XMLParser.configure({useHTMLKludges: true});
|
17
|
+
|
18
|
+
function parseMixed(stream) {
|
19
|
+
var htmlParser = XMLParser.make(stream), localParser = null,
|
20
|
+
inTag = false, lastAtt = null, phpParserState = null;
|
21
|
+
var iter = {next: top, copy: copy};
|
22
|
+
|
23
|
+
function top() {
|
24
|
+
var token = htmlParser.next();
|
25
|
+
if (token.content == "<")
|
26
|
+
inTag = true;
|
27
|
+
else if (token.style == "xml-tagname" && inTag === true)
|
28
|
+
inTag = token.content.toLowerCase();
|
29
|
+
else if (token.style == "xml-attname")
|
30
|
+
lastAtt = token.content;
|
31
|
+
else if (token.type == "xml-processing") {
|
32
|
+
// see if this opens a PHP block
|
33
|
+
for (var i = 0; i < processingInstructions.length; i++)
|
34
|
+
if (processingInstructions[i] == token.content) {
|
35
|
+
iter.next = local(PHPParser, "?>");
|
36
|
+
break;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
else if (token.style == "xml-attribute" && token.content == "\"php\"" && inTag == "script" && lastAtt == "language")
|
40
|
+
inTag = "script/php";
|
41
|
+
// "xml-processing" tokens are ignored, because they should be handled by a specific local parser
|
42
|
+
else if (token.content == ">") {
|
43
|
+
if (inTag == "script/php")
|
44
|
+
iter.next = local(PHPParser, "</script>");
|
45
|
+
else if (inTag == "script")
|
46
|
+
iter.next = local(JSParser, "</script");
|
47
|
+
else if (inTag == "style")
|
48
|
+
iter.next = local(CSSParser, "</style");
|
49
|
+
lastAtt = null;
|
50
|
+
inTag = false;
|
51
|
+
}
|
52
|
+
return token;
|
53
|
+
}
|
54
|
+
function local(parser, tag) {
|
55
|
+
var baseIndent = htmlParser.indentation();
|
56
|
+
if (parser == PHPParser && phpParserState)
|
57
|
+
localParser = phpParserState(stream);
|
58
|
+
else
|
59
|
+
localParser = parser.make(stream, baseIndent + indentUnit);
|
60
|
+
|
61
|
+
return function() {
|
62
|
+
if (stream.lookAhead(tag, false, false, true)) {
|
63
|
+
if (parser == PHPParser) phpParserState = localParser.copy();
|
64
|
+
localParser = null;
|
65
|
+
iter.next = top;
|
66
|
+
return top(); // pass the ending tag to the enclosing parser
|
67
|
+
}
|
68
|
+
|
69
|
+
var token = localParser.next();
|
70
|
+
var lt = token.value.lastIndexOf("<"), sz = Math.min(token.value.length - lt, tag.length);
|
71
|
+
if (lt != -1 && token.value.slice(lt, lt + sz).toLowerCase() == tag.slice(0, sz) &&
|
72
|
+
stream.lookAhead(tag.slice(sz), false, false, true)) {
|
73
|
+
stream.push(token.value.slice(lt));
|
74
|
+
token.value = token.value.slice(0, lt);
|
75
|
+
}
|
76
|
+
|
77
|
+
if (token.indentation) {
|
78
|
+
var oldIndent = token.indentation;
|
79
|
+
token.indentation = function(chars) {
|
80
|
+
if (chars == "</")
|
81
|
+
return baseIndent;
|
82
|
+
else
|
83
|
+
return oldIndent(chars);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
return token;
|
88
|
+
};
|
89
|
+
}
|
90
|
+
|
91
|
+
function copy() {
|
92
|
+
var _html = htmlParser.copy(), _local = localParser && localParser.copy(),
|
93
|
+
_next = iter.next, _inTag = inTag, _lastAtt = lastAtt, _php = phpParserState;
|
94
|
+
return function(_stream) {
|
95
|
+
stream = _stream;
|
96
|
+
htmlParser = _html(_stream);
|
97
|
+
localParser = _local && _local(_stream);
|
98
|
+
phpParserState = _php;
|
99
|
+
iter.next = _next;
|
100
|
+
inTag = _inTag;
|
101
|
+
lastAtt = _lastAtt;
|
102
|
+
return iter;
|
103
|
+
};
|
104
|
+
}
|
105
|
+
return iter;
|
106
|
+
}
|
107
|
+
|
108
|
+
return {
|
109
|
+
make: parseMixed,
|
110
|
+
electricChars: "{}/:",
|
111
|
+
configure: function(conf) {
|
112
|
+
if (conf.opening != null) processingInstructions = conf.opening;
|
113
|
+
}
|
114
|
+
};
|
115
|
+
|
116
|
+
})();
|