From 9cf9a3dc82b9a20dfc8611a58a2ddd3469bdbf01 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 18 Aug 2016 14:41:10 -0400 Subject: [PATCH 1/4] changing the creation of hashed passwords to a method call, so it's now centralized in one function to make it eaiser to update. Changed from using CI string helper to using php's built in uniqid function to generate a random salt. --- app/modules/users/models/user_model.php | 44 ++++++++++++++++--------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/app/modules/users/models/user_model.php b/app/modules/users/models/user_model.php index ed1c406c..f09f32eb 100644 --- a/app/modules/users/models/user_model.php +++ b/app/modules/users/models/user_model.php @@ -153,9 +153,9 @@ public function login ($username, $password, $remember = FALSE) { $user_db = $query->row_array(); $user = $this->get_user($user_db['user_id']); - $hashed_password = ($user['salt'] == '') ? md5($password) : md5($password . ':' . $user['salt']); + $hashPassSalt = ($user['salt'] == '') ? $this->generatePassSalt($password,'') : $this->generatePassSalt($password,$user['salt'])); - if ($hashed_password == $user_db['user_password']) { + if ($hashPassSalt->pass == $user_db['user_password']) { $authenticated = TRUE; } } @@ -923,11 +923,7 @@ function new_user($email, $password, $username, $first_name, $last_name, $groups $validate_key = ''; } - // generate hashed password - $CI =& get_instance(); - $CI->load->helper('string'); - $salt = random_string('unique'); - $hashed_password = md5($password . ':' . $salt); + $hashPassSalt = $this->generatePassSalt($password); $insert_fields = array( 'user_is_admin' => ($is_admin == TRUE) ? '1' : '0', @@ -936,8 +932,8 @@ function new_user($email, $password, $username, $first_name, $last_name, $groups 'user_last_name' => $last_name, 'user_username' => $username, 'user_email' => $email, - 'user_password' => $hashed_password, - 'user_salt' => $salt, + 'user_password' => $hashPassSalt->pass, + 'user_salt' => $hashPassSalt->salt, 'user_referrer' => ($affiliate != FALSE) ? $affiliate : '0', 'user_signup_date' => date('Y-m-d H:i:s'), 'user_last_login' => '0000-00-00 00:00:00', @@ -958,6 +954,7 @@ function new_user($email, $password, $username, $first_name, $last_name, $groups // create customer record if (module_installed('billing')) { + $CI =& get_instance(); $CI->load->model('billing/customer_model'); $customer = array(); @@ -1013,6 +1010,25 @@ function new_user($email, $password, $username, $first_name, $last_name, $groups return $user_id; } + /** + * Generate a hashed password and unique salt + * + * @param string $password the password enetered by the user + * @return array an array containing the password and salt for a user + */ + function generatePassSalt($password,$salt=null){ + // generate hashed password + if($salt == '' ) { + $hashed_password = md5($password); + } else { + if($salt == null){ + $salt = uniqid(); + } + $hashed_password = md5($password . ':' . $salt); + } + return array('pass'=>$hashed_password,'salt'=>$salt); + } + /** * Update User * @@ -1180,12 +1196,9 @@ function delete_user ($user_id) { * @return boolean */ function update_password ($user_id, $new_password) { - $CI =& get_instance(); - $CI->load->helper('string'); - $salt = random_string('unique'); - $hashed_password = md5($new_password . ':' . $salt); + $hashPassSalt = $this->generatePassSalt($new_password); - $this->db->update('users',array('user_password' => $hashed_password, 'user_salt' => $salt),array('user_id' => $user_id)); + $this->db->update('users',array('user_password' => $hashPassSalt->pass, 'user_salt' => $hashPassSalt->salt),array('user_id' => $user_id)); // prep hook $CI =& get_instance(); @@ -1215,7 +1228,8 @@ function reset_password ($user_id) { $this->load->helper('string'); $password = random_string('alnum',9); - $this->db->update('users',array('user_password' => md5($password), 'user_salt' => ''),array('user_id' => $user['id'])); + $hashPass = $this->generatePassSalt($password,''); + $this->db->update('users',array('user_password' => $hashPass->pass, 'user_salt' => ''),array('user_id' => $user['id'])); // hook call $CI =& get_instance(); From 51da886e7c9330dc545c2ec67cbe2d07262208d0 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 21 Mar 2019 21:53:28 -0400 Subject: [PATCH 2/4] fixing all errors for running on PHP 5.6+ --- .gitignore | 3 +- .htaccess | 45 ++++----- 1.htaccess | 3 +- README.md | 4 +- app/config/autoload.php | 0 app/config/config.example.php | 0 app/config/constants.php | 0 app/config/core_modules.php | 0 app/config/database.format.php | 8 +- app/config/default_routes.php | 0 app/config/doctypes.php | 0 app/config/email.php | 0 app/config/foreign_chars.php | 0 app/config/hooks.php | 0 app/config/index.html | 0 app/config/mimes.php | 0 app/config/pagination.php | 0 app/config/profiler.php | 0 app/config/routes.php | 0 app/config/smileys.php | 0 app/config/user_agents.php | 0 app/config/version.php | 0 app/controllers/admincp/dashboard.php | 6 +- app/controllers/admincp/dataset.php | 0 app/controllers/admincp/login.php | 0 app/controllers/cron.php | 0 app/controllers/error.php | 0 app/controllers/frontpage.php | 0 app/controllers/index.html | 0 app/controllers/install.php | 81 +++++----------- app/core/MY_Controller.php | 0 app/core/MY_Input.php | 0 app/core/MY_Loader.php | 8 +- app/core/MY_Router.php | 0 app/errors/error_404.php | 0 app/errors/error_db.php | 0 app/errors/error_general.php | 0 app/errors/error_php.php | 0 app/errors/index.html | 0 app/helpers/MY_url_helper.php | 0 app/helpers/admincp/admin_link_helper.php | 0 app/helpers/admincp/dataset_link_helper.php | 0 app/helpers/admincp/get_notices_helper.php | 16 ++-- app/helpers/admincp/url_string_helper.php | 0 app/helpers/array_to_json_helper.php | 0 .../branding/branded_include_helper.php | 0 app/helpers/branding/branded_view_helper.php | 0 app/helpers/clean_string_helper.php | 0 app/helpers/cron_log_helper.php | 0 app/helpers/file_extension_helper.php | 3 +- app/helpers/filter_directory_helper.php | 0 app/helpers/format_size_helper.php | 0 app/helpers/format_street_address_helper.php | 0 .../get_available_image_library_helper.php | 3 +- app/helpers/image_thumb_helper.php | 0 app/helpers/index.html | 0 app/helpers/install_redirect_helper.php | 0 app/helpers/local_time_helper.php | 0 app/helpers/module_installed_helper.php | 0 app/helpers/money_format_helper.php | 0 app/helpers/query_value_helper.php | 0 app/helpers/setting_helper.php | 0 app/helpers/shorten_helper.php | 0 app/helpers/ssl_helper.php | 0 app/helpers/states_helper.php | 0 app/helpers/strip_whitespace_helper.php | 0 app/helpers/template_files_helper.php | 7 +- app/helpers/time_since_helper.php | 0 app/helpers/unique_email_helper.php | 0 app/helpers/unique_username_helper.php | 0 app/helpers/valid_domain_helper.php | 0 app/helpers/verify_password_helper.php | 0 app/helpers/xml_value_prep_helper.php | 0 app/hooks/index.html | 0 app/index.html | 0 app/language/english/control_panel_lang.php | 0 app/language/english/index.html | 0 app/libraries/MY_Cart.php | 0 app/libraries/MY_Email.php | 2 +- app/libraries/MY_Upload.php | 0 app/libraries/admin_form.php | 2 +- app/libraries/admin_navigation.php | 0 app/libraries/app_hooks.php | 0 app/libraries/array_to_csv.php | 0 app/libraries/array_to_xml.php | 0 app/libraries/asciihex.php | 0 app/libraries/auto_updater.php | 3 +- .../controllers/Admincp_Controller.php | 3 +- .../controllers/Front_Controller.php | 3 +- app/libraries/dataset.php | 8 +- app/libraries/field_validation.php | 0 app/libraries/head_assets.php | 0 app/libraries/head_compile.php | 0 app/libraries/image_gallery_form.php | 0 app/libraries/index.html | 0 app/libraries/inflect.php | 0 app/libraries/jsmin.php | 0 app/libraries/key.php | 0 app/libraries/module.php | 0 app/libraries/notices.php | 0 app/libraries/response.php | 0 app/libraries/smarty.php | 0 app/libraries/smarty/Smarty.class.php | 4 +- app/libraries/smarty/plugins/block.php.php | 0 .../smarty/plugins/block.textformat.php | 0 .../smarty/plugins/function.counter.php | 0 .../smarty/plugins/function.cycle.php | 0 .../smarty/plugins/function.fetch.php | 0 .../plugins/function.html_checkboxes.php | 0 .../smarty/plugins/function.html_image.php | 0 .../smarty/plugins/function.html_options.php | 0 .../smarty/plugins/function.html_radios.php | 0 .../plugins/function.html_select_date.php | 0 .../plugins/function.html_select_time.php | 0 .../smarty/plugins/function.html_table.php | 0 .../smarty/plugins/function.mailto.php | 0 .../smarty/plugins/function.math.php | 0 .../smarty/plugins/function.popup.php | 0 .../smarty/plugins/function.popup_init.php | 0 .../smarty/plugins/modifier.capitalize.php | 0 .../smarty/plugins/modifier.date_format.php | 0 .../plugins/modifier.debug_print_var.php | 0 .../smarty/plugins/modifier.escape.php | 0 .../smarty/plugins/modifier.regex_replace.php | 0 .../smarty/plugins/modifier.replace.php | 0 .../smarty/plugins/modifier.spacify.php | 0 .../smarty/plugins/modifier.truncate.php | 0 .../smarty/plugins/modifiercompiler.cat.php | 0 .../modifiercompiler.count_characters.php | 0 .../modifiercompiler.count_paragraphs.php | 0 .../modifiercompiler.count_sentences.php | 0 .../plugins/modifiercompiler.count_words.php | 0 .../plugins/modifiercompiler.default.php | 0 .../plugins/modifiercompiler.indent.php | 0 .../smarty/plugins/modifiercompiler.lower.php | 0 .../plugins/modifiercompiler.noprint.php | 0 .../modifiercompiler.string_format.php | 0 .../smarty/plugins/modifiercompiler.strip.php | 0 .../plugins/modifiercompiler.strip_tags.php | 0 .../smarty/plugins/modifiercompiler.upper.php | 0 .../plugins/modifiercompiler.wordwrap.php | 0 .../plugins/outputfilter.trimwhitespace.php | 0 .../plugins/shared.escape_special_chars.php | 0 .../smarty/plugins/shared.make_timestamp.php | 0 .../variablefilter.htmlspecialchars.php | 0 .../smarty_internal_cacheresource_file.php | 0 .../smarty_internal_compile_append.php | 0 .../smarty_internal_compile_assign.php | 0 .../smarty_internal_compile_block.php | 5 +- .../smarty_internal_compile_break.php | 0 .../smarty_internal_compile_call.php | 0 .../smarty_internal_compile_capture.php | 0 .../smarty_internal_compile_config_load.php | 0 .../smarty_internal_compile_continue.php | 0 .../smarty_internal_compile_debug.php | 0 .../smarty_internal_compile_eval.php | 0 .../smarty_internal_compile_extends.php | 0 .../smarty_internal_compile_for.php | 0 .../smarty_internal_compile_foreach.php | 0 .../smarty_internal_compile_function.php | 0 .../sysplugins/smarty_internal_compile_if.php | 0 .../smarty_internal_compile_include.php | 0 .../smarty_internal_compile_include_php.php | 0 .../smarty_internal_compile_insert.php | 0 .../smarty_internal_compile_ldelim.php | 0 .../smarty_internal_compile_nocache.php | 0 ..._internal_compile_private_block_plugin.php | 0 ...ternal_compile_private_function_plugin.php | 0 ...arty_internal_compile_private_modifier.php | 0 ..._compile_private_object_block_function.php | 0 ...ternal_compile_private_object_function.php | 0 ...ernal_compile_private_print_expression.php | 0 ...ernal_compile_private_registered_block.php | 0 ...al_compile_private_registered_function.php | 0 ...ernal_compile_private_special_variable.php | 0 .../smarty_internal_compile_rdelim.php | 0 .../smarty_internal_compile_section.php | 0 .../smarty_internal_compile_while.php | 0 .../smarty_internal_compilebase.php | 43 ++++----- .../sysplugins/smarty_internal_config.php | 0 .../smarty_internal_config_file_compiler.php | 0 .../smarty_internal_configfilelexer.php | 0 .../smarty_internal_configfileparser.php | 0 .../sysplugins/smarty_internal_data.php | 0 .../sysplugins/smarty_internal_debug.php | 0 .../sysplugins/smarty_internal_filter.php | 0 .../smarty_internal_filter_handler.php | 0 .../smarty_internal_function_call_handler.php | 0 .../smarty_internal_nocache_insert.php | 0 .../sysplugins/smarty_internal_parsetree.php | 0 .../sysplugins/smarty_internal_register.php | 0 .../smarty_internal_resource_eval.php | 0 .../smarty_internal_resource_extends.php | 0 .../smarty_internal_resource_file.php | 0 .../smarty_internal_resource_php.php | 0 .../smarty_internal_resource_registered.php | 0 .../smarty_internal_resource_stream.php | 0 .../smarty_internal_resource_string.php | 0 ...smarty_internal_smartytemplatecompiler.php | 0 .../sysplugins/smarty_internal_template.php | 0 .../smarty_internal_templatecompilerbase.php | 0 .../smarty_internal_templatelexer.php | 0 .../smarty_internal_templateparser.php | 0 .../sysplugins/smarty_internal_utility.php | 0 .../sysplugins/smarty_internal_wrapper.php | 0 .../sysplugins/smarty_internal_write_file.php | 0 .../smarty/sysplugins/smarty_security.php | 0 app/libraries/stats.php | 0 app/models/admincp/notices.php | 2 +- app/models/custom_fields_model.php | 0 app/models/index.html | 0 app/models/install_model.php | 88 ++++++++++++++++++ app/models/link_model.php | 0 app/models/states_model.php | 0 app/modules/blogs/blogs.php | 2 +- app/modules/blogs/controllers/admincp.php | 0 app/modules/blogs/controllers/blog.php | 0 app/modules/blogs/models/blog_model.php | 0 app/modules/blogs/views/blog_form.php | 0 app/modules/blogs/views/blogs.php | 0 .../custom_fields/controllers/admincp.php | 0 app/modules/custom_fields/custom_fields.php | 0 .../custom_fields/libraries/fieldtype.php | 0 .../libraries/fieldtypes/checkbox.php | 0 .../libraries/fieldtypes/date.php | 0 .../libraries/fieldtypes/datetime.php | 0 .../libraries/fieldtypes/file_upload.php | 0 .../fieldtypes/member_group_relationship.php | 0 .../libraries/fieldtypes/multicheckbox.php | 0 .../libraries/fieldtypes/multiselect.php | 0 .../libraries/fieldtypes/radio.php | 0 .../libraries/fieldtypes/relationship.php | 0 .../libraries/fieldtypes/select.php | 0 .../fieldtypes/subscription_relationship.php | 0 .../libraries/fieldtypes/text.php | 0 .../libraries/fieldtypes/textarea.php | 0 .../fieldtypes/topic_relationship.php | 0 .../libraries/fieldtypes/wysiwyg.php | 0 .../custom_fields/libraries/form_builder.php | 0 .../function.custom_field.php | 0 .../custom_fields/views/arrange_fields.php | 0 .../custom_fields/views/custom_fields.php | 0 .../custom_fields/views/field_form.php | 0 app/modules/emails/controllers/admincp.php | 0 app/modules/emails/emails.php | 13 +-- app/modules/emails/models/email_model.php | 0 .../emails/models/email_template_model.php | 0 .../emails/template_import/email_layout.thtml | 0 .../member_forgot_password.thtml | 0 .../template_import/member_register.thtml | 0 .../member_validate_email.thtml | 0 .../emails/template_import/store_order.thtml | 0 .../store_order_product_downloadable.thtml | 0 .../template_import/subscription_charge.thtml | 0 .../template_import/subscription_expire.thtml | 0 app/modules/emails/views/email_form.php | 0 app/modules/emails/views/email_layout.php | 0 app/modules/emails/views/emails.php | 0 app/modules/emails/views/select_hook.php | 0 app/modules/emails/views/send.php | 0 app/modules/forms/controllers/admincp.php | 0 app/modules/forms/controllers/form.php | 0 app/modules/forms/forms.php | 2 +- app/modules/forms/models/form_model.php | 0 .../forms/template_plugins/block.form.php | 0 app/modules/forms/views/fields.php | 0 app/modules/forms/views/form.php | 0 app/modules/forms/views/forms.php | 0 app/modules/forms/views/response.php | 0 app/modules/forms/views/responses.php | 0 .../googleanalytics/controllers/admincp.php | 0 .../googleanalytics/googleanalytics.php | 0 .../outputfilter.googleanalytics.php | 0 app/modules/googleanalytics/views/generic.php | 0 app/modules/import/controllers/admincp.php | 0 app/modules/import/import.php | 0 app/modules/import/views/fields.php | 0 app/modules/import/views/index.php | 0 app/modules/import/views/results.php | 0 .../menu_manager/controllers/admincp.php | 0 app/modules/menu_manager/menu_manager.php | 4 +- .../menu_manager/models/menu_model.php | 0 .../template_plugins/function.menu.php | 0 app/modules/menu_manager/views/links.php | 0 app/modules/menu_manager/views/menu_form.php | 0 .../menu_manager/views/menu_manager.php | 0 .../menu_manager/views/possible_links.php | 0 app/modules/modules/models/module_model.php | 2 + app/modules/paywall/controllers/admincp.php | 0 .../paywall/controllers/protected_link.php | 0 .../paywall/helpers/paywall_helper.php | 0 app/modules/paywall/paywall.php | 0 .../function.protected_link.php | 0 .../paywall/views/paywall_configuration.php | 0 app/modules/publish/controllers/admincp.php | 1 + app/modules/publish/controllers/content.php | 0 app/modules/publish/models/content_model.php | 0 .../publish/models/content_type_model.php | 2 +- app/modules/publish/models/topic_model.php | 2 +- app/modules/publish/publish.php | 8 +- .../template_plugins/block.content.php | 0 .../block.content_in_topic.php | 0 .../publish/template_plugins/block.topics.php | 0 app/modules/publish/views/content.php | 0 .../publish/views/content_non_standard.php | 0 .../publish/views/content_standard.php | 0 app/modules/publish/views/content_types.php | 0 app/modules/publish/views/create_post.php | 0 app/modules/publish/views/create_type.php | 0 app/modules/publish/views/topic_form.php | 0 app/modules/publish/views/topics.php | 0 app/modules/publish/views/type_fields.php | 0 app/modules/publish/views/type_form.php | 0 app/modules/reports/controllers/admincp.php | 0 app/modules/reports/reports.php | 0 app/modules/reports/views/cancellations.php | 0 app/modules/reports/views/coupons.php | 0 app/modules/reports/views/cronjob.php | 0 app/modules/reports/views/expirations.php | 0 app/modules/reports/views/invoice.php | 0 app/modules/reports/views/invoices.php | 0 app/modules/reports/views/mark_refund.php | 0 app/modules/reports/views/popular.php | 0 app/modules/reports/views/products.php | 0 app/modules/reports/views/registrations.php | 0 app/modules/reports/views/subscriptions.php | 0 app/modules/reports/views/taxes.php | 0 app/modules/rss/controllers/admincp.php | 0 app/modules/rss/controllers/feed.php | 0 app/modules/rss/models/rss_model.php | 0 app/modules/rss/rss.php | 2 +- app/modules/rss/views/feed_form.php | 0 app/modules/rss/views/rss_feeds.php | 0 app/modules/search/controllers/admincp.php | 0 app/modules/search/controllers/search.php | 0 .../search/libraries/search_results.php | 0 app/modules/search/search.php | 0 .../search/views/search_configuration.php | 0 app/modules/settings/controllers/admincp.php | 0 .../settings/models/settings_model.php | 0 app/modules/settings/settings.php | 0 .../views/module_uninstall_confirm.php | 0 app/modules/settings/views/modules.php | 0 app/modules/settings/views/settings.php | 0 app/modules/theme/controllers/admincp.php | 7 +- app/modules/theme/controllers/template.php | 0 app/modules/theme/models/theme_model.php | 0 app/modules/theme/theme.php | 0 app/modules/theme/views/editor.php | 0 app/modules/theme/views/install_complete.php | 0 app/modules/theme/views/install_confirm.php | 0 app/modules/theme/views/themes.php | 0 app/modules/users/controllers/admincp.php | 0 .../users/controllers/user_activity.php | 0 app/modules/users/controllers/users.php | 0 app/modules/users/models/login_model.php | 0 app/modules/users/models/user_model.php | 9 +- app/modules/users/models/usergroup_model.php | 0 .../users/template_plugins/block.in_group.php | 0 .../template_plugins/block.login_form.php | 0 .../users/template_plugins/block.members.php | 0 .../template_plugins/block.not_in_group.php | 0 .../block.registration_form.php | 0 .../outputfilter.user_activity.php | 0 app/modules/users/users.php | 10 +- app/modules/users/views/data.php | 0 app/modules/users/views/group_form.php | 0 app/modules/users/views/groups.php | 0 app/modules/users/views/logins.php | 0 .../users/views/member_list_config.php | 0 app/modules/users/views/profile.php | 0 app/modules/users/views/user_form.php | 0 app/modules/users/views/users.php | 0 app/third_party/MX/Base.php | 0 app/third_party/MX/Ci.php | 0 app/third_party/MX/Config.php | 0 app/third_party/MX/Controller.php | 0 app/third_party/MX/Lang.php | 4 +- app/third_party/MX/Loader.php | 55 +++++++---- app/third_party/MX/Modules.php | 8 +- app/third_party/MX/Router.php | 0 app/updates/3.01.php | 2 +- app/updates/3.02.php | 2 +- app/updates/3.03.php | 0 app/updates/3.35.php | 0 app/updates/3.38.php | 0 app/updates/3.39.php | 0 app/updates/3.40.php | 0 app/updates/3.69.php | 0 app/updates/install.php | 22 ++--- app/views/cp/dashboard.php | 0 app/views/cp/error.php | 0 app/views/cp/footer.php | 0 app/views/cp/header.php | 0 app/views/cp/html_footer.php | 0 app/views/cp/html_header.php | 0 app/views/cp/login.php | 0 app/views/index.html | 0 app/views/install/admin.php | 0 app/views/install/complete.php | 0 app/views/install/configuration.php | 4 +- app/views/install/footer.php | 0 app/views/install/header.php | 6 +- branding/default/css/dashboard.css | 0 branding/default/css/dataset.css | 0 branding/default/css/datepicker.css | 0 branding/default/css/installer.css | 0 branding/default/css/login.css | 0 branding/default/css/menu_manager.css | 0 branding/default/css/settings.css | 0 branding/default/css/theme_editor.css | 0 branding/default/css/universal.css | 0 branding/default/images/arrow.png | Bin branding/default/images/box-bottom-left.gif | Bin branding/default/images/box-bottom-right.gif | Bin branding/default/images/box-bottom.gif | Bin branding/default/images/box-right.gif | Bin branding/default/images/box-top-right.gif | Bin branding/default/images/button.gif | Bin branding/default/images/creditcard.png | Bin branding/default/images/customer.png | Bin branding/default/images/dashbox_top.gif | Bin branding/default/images/gateway.png | Bin branding/default/images/grey_arrow.gif | Bin branding/default/images/large_button.gif | Bin branding/default/images/loading.gif | Bin branding/default/images/login.gif | Bin branding/default/images/money.png | Bin branding/default/images/nav_dashboard.png | Bin branding/default/images/recurring.png | Bin branding/default/images/refreshing.gif | Bin branding/default/images/refunded.png | Bin branding/default/images/secure64.png | Bin branding/default/images/support.png | Bin branding/default/images/warning64.png | Bin branding/default/images/x.png | Bin branding/default/js/arrange_fields.js | 0 branding/default/js/ckeditor.old/.htaccess | 0 branding/default/js/ckeditor.old/CHANGES.md | 0 branding/default/js/ckeditor.old/LICENSE.html | 0 branding/default/js/ckeditor.old/LICENSE.md | 0 branding/default/js/ckeditor.old/README.md | 0 .../ckeditor.old/_source/adapters/jquery.js | 0 .../ckeditor.old/_source/core/_bootstrap.js | 0 .../js/ckeditor.old/_source/core/ckeditor.js | 0 .../_source/core/ckeditor_base.js | 0 .../_source/core/ckeditor_basic.js | 0 .../js/ckeditor.old/_source/core/command.js | 0 .../_source/core/commanddefinition.js | 0 .../js/ckeditor.old/_source/core/config.js | 0 .../_source/core/dataprocessor.js | 0 .../js/ckeditor.old/_source/core/dom.js | 0 .../ckeditor.old/_source/core/dom/comment.js | 0 .../ckeditor.old/_source/core/dom/document.js | 0 .../_source/core/dom/documentfragment.js | 0 .../_source/core/dom/domobject.js | 0 .../ckeditor.old/_source/core/dom/element.js | 0 .../_source/core/dom/elementpath.js | 0 .../js/ckeditor.old/_source/core/dom/event.js | 0 .../js/ckeditor.old/_source/core/dom/node.js | 0 .../ckeditor.old/_source/core/dom/nodelist.js | 0 .../js/ckeditor.old/_source/core/dom/range.js | 0 .../_source/core/dom/rangelist.js | 0 .../js/ckeditor.old/_source/core/dom/text.js | 0 .../ckeditor.old/_source/core/dom/walker.js | 0 .../ckeditor.old/_source/core/dom/window.js | 0 .../js/ckeditor.old/_source/core/dtd.js | 0 .../js/ckeditor.old/_source/core/editor.js | 0 .../ckeditor.old/_source/core/editor_basic.js | 0 .../js/ckeditor.old/_source/core/env.js | 0 .../js/ckeditor.old/_source/core/event.js | 0 .../js/ckeditor.old/_source/core/eventInfo.js | 0 .../ckeditor.old/_source/core/focusmanager.js | 0 .../ckeditor.old/_source/core/htmlparser.js | 0 .../_source/core/htmlparser/basicwriter.js | 0 .../_source/core/htmlparser/cdata.js | 0 .../_source/core/htmlparser/comment.js | 0 .../_source/core/htmlparser/element.js | 0 .../_source/core/htmlparser/filter.js | 0 .../_source/core/htmlparser/fragment.js | 0 .../_source/core/htmlparser/text.js | 0 .../js/ckeditor.old/_source/core/lang.js | 0 .../js/ckeditor.old/_source/core/loader.js | 0 .../_source/core/plugindefinition.js | 0 .../js/ckeditor.old/_source/core/plugins.js | 0 .../_source/core/resourcemanager.js | 0 .../ckeditor.old/_source/core/scriptloader.js | 0 .../js/ckeditor.old/_source/core/skins.js | 0 .../js/ckeditor.old/_source/core/themes.js | 0 .../js/ckeditor.old/_source/core/tools.js | 0 .../js/ckeditor.old/_source/core/ui.js | 0 .../ckeditor.old/_source/lang/_languages.js | 0 .../_source/lang/_translationstatus.txt | 0 .../js/ckeditor.old/_source/lang/af.js | 0 .../js/ckeditor.old/_source/lang/ar.js | 0 .../js/ckeditor.old/_source/lang/bg.js | 0 .../js/ckeditor.old/_source/lang/bn.js | 0 .../js/ckeditor.old/_source/lang/bs.js | 0 .../js/ckeditor.old/_source/lang/ca.js | 0 .../js/ckeditor.old/_source/lang/cs.js | 0 .../js/ckeditor.old/_source/lang/cy.js | 0 .../js/ckeditor.old/_source/lang/da.js | 0 .../js/ckeditor.old/_source/lang/de.js | 0 .../js/ckeditor.old/_source/lang/el.js | 0 .../js/ckeditor.old/_source/lang/en-au.js | 0 .../js/ckeditor.old/_source/lang/en-ca.js | 0 .../js/ckeditor.old/_source/lang/en-gb.js | 0 .../js/ckeditor.old/_source/lang/en.js | 0 .../js/ckeditor.old/_source/lang/eo.js | 0 .../js/ckeditor.old/_source/lang/es.js | 0 .../js/ckeditor.old/_source/lang/et.js | 0 .../js/ckeditor.old/_source/lang/eu.js | 0 .../js/ckeditor.old/_source/lang/fa.js | 0 .../js/ckeditor.old/_source/lang/fi.js | 0 .../js/ckeditor.old/_source/lang/fo.js | 0 .../js/ckeditor.old/_source/lang/fr-ca.js | 0 .../js/ckeditor.old/_source/lang/fr.js | 0 .../js/ckeditor.old/_source/lang/gl.js | 0 .../js/ckeditor.old/_source/lang/gu.js | 0 .../js/ckeditor.old/_source/lang/he.js | 0 .../js/ckeditor.old/_source/lang/hi.js | 0 .../js/ckeditor.old/_source/lang/hr.js | 0 .../js/ckeditor.old/_source/lang/hu.js | 0 .../js/ckeditor.old/_source/lang/is.js | 0 .../js/ckeditor.old/_source/lang/it.js | 0 .../js/ckeditor.old/_source/lang/ja.js | 0 .../js/ckeditor.old/_source/lang/ka.js | 0 .../js/ckeditor.old/_source/lang/km.js | 0 .../js/ckeditor.old/_source/lang/ko.js | 0 .../js/ckeditor.old/_source/lang/lt.js | 0 .../js/ckeditor.old/_source/lang/lv.js | 0 .../js/ckeditor.old/_source/lang/mn.js | 0 .../js/ckeditor.old/_source/lang/ms.js | 0 .../js/ckeditor.old/_source/lang/nb.js | 0 .../js/ckeditor.old/_source/lang/nl.js | 0 .../js/ckeditor.old/_source/lang/no.js | 0 .../js/ckeditor.old/_source/lang/pl.js | 0 .../js/ckeditor.old/_source/lang/pt-br.js | 0 .../js/ckeditor.old/_source/lang/pt.js | 0 .../js/ckeditor.old/_source/lang/ro.js | 0 .../js/ckeditor.old/_source/lang/ru.js | 0 .../js/ckeditor.old/_source/lang/sk.js | 0 .../js/ckeditor.old/_source/lang/sl.js | 0 .../js/ckeditor.old/_source/lang/sr-latn.js | 0 .../js/ckeditor.old/_source/lang/sr.js | 0 .../js/ckeditor.old/_source/lang/sv.js | 0 .../js/ckeditor.old/_source/lang/th.js | 0 .../js/ckeditor.old/_source/lang/tr.js | 0 .../js/ckeditor.old/_source/lang/uk.js | 0 .../js/ckeditor.old/_source/lang/vi.js | 0 .../js/ckeditor.old/_source/lang/zh-cn.js | 0 .../js/ckeditor.old/_source/lang/zh.js | 0 .../plugins/a11yhelp/dialogs/a11yhelp.js | 0 .../_source/plugins/a11yhelp/lang/en.js | 0 .../_source/plugins/a11yhelp/lang/he.js | 0 .../_source/plugins/a11yhelp/plugin.js | 0 .../_source/plugins/about/dialogs/about.js | 0 .../plugins/about/dialogs/logo_ckeditor.png | Bin .../_source/plugins/about/plugin.js | 0 .../_source/plugins/adobeair/plugin.js | 0 .../_source/plugins/ajax/plugin.js | 0 .../_source/plugins/autogrow/plugin.js | 0 .../_source/plugins/basicstyles/plugin.js | 0 .../_source/plugins/bbcode/plugin.js | 0 .../_source/plugins/bidi/plugin.js | 0 .../_source/plugins/blockquote/plugin.js | 0 .../_source/plugins/button/plugin.js | 0 .../plugins/clipboard/dialogs/paste.js | 0 .../_source/plugins/clipboard/plugin.js | 0 .../_source/plugins/colorbutton/plugin.js | 0 .../colordialog/dialogs/colordialog.js | 0 .../_source/plugins/colordialog/plugin.js | 0 .../_source/plugins/contextmenu/plugin.js | 0 .../_source/plugins/devtools/lang/en.js | 0 .../_source/plugins/devtools/plugin.js | 0 .../plugins/dialog/dialogDefinition.js | 0 .../_source/plugins/dialog/plugin.js | 0 .../_source/plugins/dialogadvtab/plugin.js | 0 .../_source/plugins/dialogui/plugin.js | 0 .../_source/plugins/div/dialogs/div.js | 0 .../_source/plugins/div/plugin.js | 0 .../plugins/docprops/dialogs/docprops.js | 0 .../_source/plugins/docprops/plugin.js | 0 .../_source/plugins/domiterator/plugin.js | 0 .../_source/plugins/editingblock/plugin.js | 0 .../_source/plugins/elementspath/plugin.js | 0 .../_source/plugins/enterkey/plugin.js | 0 .../_source/plugins/entities/plugin.js | 0 .../_source/plugins/fakeobjects/plugin.js | 0 .../_source/plugins/filebrowser/plugin.js | 0 .../_source/plugins/find/dialogs/find.js | 0 .../_source/plugins/find/plugin.js | 0 .../_source/plugins/flash/dialogs/flash.js | 0 .../plugins/flash/images/placeholder.png | Bin .../_source/plugins/flash/plugin.js | 0 .../_source/plugins/floatpanel/plugin.js | 0 .../_source/plugins/font/plugin.js | 0 .../_source/plugins/format/plugin.js | 0 .../_source/plugins/forms/dialogs/button.js | 0 .../_source/plugins/forms/dialogs/checkbox.js | 0 .../_source/plugins/forms/dialogs/form.js | 0 .../plugins/forms/dialogs/hiddenfield.js | 0 .../_source/plugins/forms/dialogs/radio.js | 0 .../_source/plugins/forms/dialogs/select.js | 0 .../_source/plugins/forms/dialogs/textarea.js | 0 .../plugins/forms/dialogs/textfield.js | 0 .../plugins/forms/images/hiddenfield.gif | Bin .../_source/plugins/forms/plugin.js | 0 .../_source/plugins/horizontalrule/plugin.js | 0 .../plugins/htmldataprocessor/plugin.js | 0 .../_source/plugins/htmlwriter/plugin.js | 0 .../_source/plugins/iframe/dialogs/iframe.js | 0 .../plugins/iframe/images/placeholder.png | Bin .../_source/plugins/iframe/plugin.js | 0 .../_source/plugins/iframedialog/plugin.js | 0 .../_source/plugins/image/dialogs/image.js | 0 .../_source/plugins/image/plugin.js | 0 .../_source/plugins/indent/plugin.js | 0 .../_source/plugins/justify/plugin.js | 0 .../_source/plugins/keystrokes/plugin.js | 0 .../_source/plugins/link/dialogs/anchor.js | 0 .../_source/plugins/link/dialogs/link.js | 0 .../_source/plugins/link/images/anchor.gif | Bin .../_source/plugins/link/plugin.js | 0 .../_source/plugins/list/plugin.js | 0 .../_source/plugins/listblock/plugin.js | 0 .../plugins/liststyle/dialogs/liststyle.js | 0 .../_source/plugins/liststyle/plugin.js | 0 .../_source/plugins/maximize/plugin.js | 0 .../_source/plugins/menu/plugin.js | 0 .../_source/plugins/menubutton/plugin.js | 0 .../_source/plugins/newpage/plugin.js | 0 .../plugins/pagebreak/images/pagebreak.gif | Bin .../_source/plugins/pagebreak/plugin.js | 0 .../_source/plugins/panel/plugin.js | 0 .../_source/plugins/panelbutton/plugin.js | 0 .../plugins/pastefromword/filter/default.js | 0 .../_source/plugins/pastefromword/plugin.js | 0 .../plugins/pastetext/dialogs/pastetext.js | 0 .../_source/plugins/pastetext/plugin.js | 0 .../placeholder/dialogs/placeholder.js | 0 .../_source/plugins/placeholder/lang/en.js | 0 .../_source/plugins/placeholder/lang/he.js | 0 .../plugins/placeholder/placeholder.gif | Bin .../_source/plugins/placeholder/plugin.js | 0 .../_source/plugins/popup/plugin.js | 0 .../_source/plugins/preview/plugin.js | 0 .../_source/plugins/print/plugin.js | 0 .../_source/plugins/removeformat/plugin.js | 0 .../_source/plugins/resize/plugin.js | 0 .../_source/plugins/richcombo/plugin.js | 0 .../_source/plugins/save/plugin.js | 0 .../_source/plugins/scayt/dialogs/options.js | 0 .../_source/plugins/scayt/dialogs/toolbar.css | 0 .../_source/plugins/scayt/plugin.js | 0 .../_source/plugins/selection/plugin.js | 0 .../showblocks/images/block_address.png | Bin .../showblocks/images/block_blockquote.png | Bin .../plugins/showblocks/images/block_div.png | Bin .../plugins/showblocks/images/block_h1.png | Bin .../plugins/showblocks/images/block_h2.png | Bin .../plugins/showblocks/images/block_h3.png | Bin .../plugins/showblocks/images/block_h4.png | Bin .../plugins/showblocks/images/block_h5.png | Bin .../plugins/showblocks/images/block_h6.png | Bin .../plugins/showblocks/images/block_p.png | Bin .../plugins/showblocks/images/block_pre.png | Bin .../_source/plugins/showblocks/plugin.js | 0 .../_source/plugins/showborders/plugin.js | 0 .../_source/plugins/smiley/dialogs/smiley.js | 0 .../plugins/smiley/images/angel_smile.gif | Bin .../plugins/smiley/images/angry_smile.gif | Bin .../plugins/smiley/images/broken_heart.gif | Bin .../plugins/smiley/images/confused_smile.gif | Bin .../plugins/smiley/images/cry_smile.gif | Bin .../plugins/smiley/images/devil_smile.gif | Bin .../smiley/images/embaressed_smile.gif | Bin .../plugins/smiley/images/envelope.gif | Bin .../_source/plugins/smiley/images/heart.gif | Bin .../_source/plugins/smiley/images/kiss.gif | Bin .../plugins/smiley/images/lightbulb.gif | Bin .../plugins/smiley/images/omg_smile.gif | Bin .../plugins/smiley/images/regular_smile.gif | Bin .../plugins/smiley/images/sad_smile.gif | Bin .../plugins/smiley/images/shades_smile.gif | Bin .../plugins/smiley/images/teeth_smile.gif | Bin .../plugins/smiley/images/thumbs_down.gif | Bin .../plugins/smiley/images/thumbs_up.gif | Bin .../plugins/smiley/images/tounge_smile.gif | Bin .../images/whatchutalkingabout_smile.gif | Bin .../plugins/smiley/images/wink_smile.gif | Bin .../_source/plugins/smiley/plugin.js | 0 .../_source/plugins/sourcearea/plugin.js | 0 .../specialchar/dialogs/specialchar.js | 0 .../_source/plugins/specialchar/lang/en.js | 0 .../_source/plugins/specialchar/plugin.js | 0 .../_source/plugins/styles/plugin.js | 0 .../_source/plugins/styles/styles/default.js | 0 .../_source/plugins/stylescombo/plugin.js | 0 .../plugins/stylesheetparser/plugin.js | 0 .../_source/plugins/tab/plugin.js | 0 .../_source/plugins/table/dialogs/table.js | 0 .../_source/plugins/table/plugin.js | 0 .../_source/plugins/tableresize/plugin.js | 0 .../plugins/tabletools/dialogs/tableCell.js | 0 .../_source/plugins/tabletools/plugin.js | 0 .../plugins/templates/dialogs/templates.js | 0 .../_source/plugins/templates/plugin.js | 0 .../plugins/templates/templates/default.js | 0 .../templates/templates/images/template1.gif | Bin .../templates/templates/images/template2.gif | Bin .../templates/templates/images/template3.gif | Bin .../_source/plugins/toolbar/plugin.js | 0 .../plugins/uicolor/dialogs/uicolor.js | 0 .../_source/plugins/uicolor/lang/en.js | 0 .../_source/plugins/uicolor/lang/he.js | 0 .../_source/plugins/uicolor/plugin.js | 0 .../_source/plugins/uicolor/uicolor.gif | Bin .../plugins/uicolor/yui/assets/hue_bg.png | Bin .../plugins/uicolor/yui/assets/hue_thumb.png | Bin .../uicolor/yui/assets/picker_mask.png | Bin .../uicolor/yui/assets/picker_thumb.png | Bin .../plugins/uicolor/yui/assets/yui.css | 0 .../_source/plugins/uicolor/yui/yui.js | 0 .../_source/plugins/undo/plugin.js | 0 .../_source/plugins/wsc/dialogs/ciframe.html | 0 .../plugins/wsc/dialogs/tmpFrameset.html | 0 .../_source/plugins/wsc/dialogs/wsc.css | 0 .../_source/plugins/wsc/dialogs/wsc.js | 0 .../_source/plugins/wsc/plugin.js | 0 .../_source/plugins/wysiwygarea/plugin.js | 0 .../_source/plugins/xml/plugin.js | 0 .../_source/skins/kama/dialog.css | 0 .../_source/skins/kama/editor.css | 0 .../_source/skins/kama/elementspath.css | 0 .../ckeditor.old/_source/skins/kama/icons.css | 0 .../ckeditor.old/_source/skins/kama/icons.png | Bin .../_source/skins/kama/icons_rtl.png | Bin .../skins/kama/images/dialog_sides.gif | Bin .../skins/kama/images/dialog_sides.png | Bin .../skins/kama/images/dialog_sides_rtl.png | Bin .../_source/skins/kama/images/mini.gif | Bin .../_source/skins/kama/images/noimage.png | Bin .../_source/skins/kama/images/sprites.png | Bin .../_source/skins/kama/images/sprites_ie6.png | Bin .../skins/kama/images/toolbar_start.gif | Bin .../_source/skins/kama/mainui.css | 0 .../ckeditor.old/_source/skins/kama/menu.css | 0 .../ckeditor.old/_source/skins/kama/panel.css | 0 .../_source/skins/kama/presets.css | 0 .../ckeditor.old/_source/skins/kama/reset.css | 0 .../_source/skins/kama/richcombo.css | 0 .../ckeditor.old/_source/skins/kama/skin.js | 0 .../_source/skins/kama/templates.css | 0 .../_source/skins/kama/toolbar.css | 0 .../_source/skins/office2003/dialog.css | 0 .../_source/skins/office2003/editor.css | 0 .../_source/skins/office2003/elementspath.css | 0 .../_source/skins/office2003/icons.css | 0 .../_source/skins/office2003/icons.png | Bin .../_source/skins/office2003/icons_rtl.png | Bin .../skins/office2003/images/dialog_sides.gif | Bin .../skins/office2003/images/dialog_sides.png | Bin .../office2003/images/dialog_sides_rtl.png | Bin .../_source/skins/office2003/images/mini.gif | Bin .../skins/office2003/images/noimage.png | Bin .../skins/office2003/images/sprites.png | Bin .../skins/office2003/images/sprites_ie6.png | Bin .../_source/skins/office2003/mainui.css | 0 .../_source/skins/office2003/menu.css | 0 .../_source/skins/office2003/panel.css | 0 .../_source/skins/office2003/presets.css | 0 .../_source/skins/office2003/reset.css | 0 .../_source/skins/office2003/richcombo.css | 0 .../_source/skins/office2003/skin.js | 0 .../_source/skins/office2003/templates.css | 0 .../_source/skins/office2003/toolbar.css | 0 .../ckeditor.old/_source/skins/v2/dialog.css | 0 .../ckeditor.old/_source/skins/v2/editor.css | 0 .../_source/skins/v2/elementspath.css | 0 .../ckeditor.old/_source/skins/v2/icons.css | 0 .../ckeditor.old/_source/skins/v2/icons.png | Bin .../_source/skins/v2/icons_rtl.png | Bin .../_source/skins/v2/images/dialog_sides.gif | Bin .../_source/skins/v2/images/dialog_sides.png | Bin .../skins/v2/images/dialog_sides_rtl.png | Bin .../_source/skins/v2/images/mini.gif | Bin .../_source/skins/v2/images/noimage.png | Bin .../_source/skins/v2/images/sprites.png | Bin .../_source/skins/v2/images/sprites_ie6.png | Bin .../_source/skins/v2/images/toolbar_start.gif | Bin .../ckeditor.old/_source/skins/v2/mainui.css | 0 .../js/ckeditor.old/_source/skins/v2/menu.css | 0 .../ckeditor.old/_source/skins/v2/panel.css | 0 .../ckeditor.old/_source/skins/v2/presets.css | 0 .../ckeditor.old/_source/skins/v2/reset.css | 0 .../_source/skins/v2/richcombo.css | 0 .../js/ckeditor.old/_source/skins/v2/skin.js | 0 .../_source/skins/v2/templates.css | 0 .../ckeditor.old/_source/skins/v2/toolbar.css | 0 .../_source/themes/default/theme.js | 0 .../js/ckeditor.old/adapters/jquery.js | 0 .../default/js/ckeditor.old/build-config.js | 0 branding/default/js/ckeditor.old/ckeditor.asp | 0 branding/default/js/ckeditor.old/ckeditor.js | 0 .../default/js/ckeditor.old/ckeditor.pack | 0 branding/default/js/ckeditor.old/ckeditor.php | 0 .../default/js/ckeditor.old/ckeditor_basic.js | 0 .../js/ckeditor.old/ckeditor_basic_source.js | 0 .../default/js/ckeditor.old/ckeditor_php4.php | 0 .../default/js/ckeditor.old/ckeditor_php5.php | 0 .../js/ckeditor.old/ckeditor_source.js | 0 branding/default/js/ckeditor.old/config.js | 0 branding/default/js/ckeditor.old/contents.css | 0 .../default/js/ckeditor.old/images/spacer.gif | Bin .../js/ckeditor.old/kcfinder/browse.php | 0 .../js/ckeditor.old/kcfinder/config.php | 0 .../js/ckeditor.old/kcfinder/core/.htaccess | 0 .../ckeditor.old/kcfinder/core/autoload.php | 0 .../js/ckeditor.old/kcfinder/core/browser.php | 0 .../kcfinder/core/types/type_img.php | 0 .../kcfinder/core/types/type_mime.php | 0 .../ckeditor.old/kcfinder/core/uploader.php | 0 .../js/ckeditor.old/kcfinder/css/index.php | 0 .../js/ckeditor.old/kcfinder/doc/.htaccess | 0 .../js/ckeditor.old/kcfinder/doc/Changelog | 0 .../js/ckeditor.old/kcfinder/doc/INSTALL | 0 .../js/ckeditor.old/kcfinder/doc/LICENSE.GPL | 0 .../js/ckeditor.old/kcfinder/doc/LICENSE.LGPL | 0 .../js/ckeditor.old/kcfinder/doc/README | 0 .../kcfinder/js/browser/0bject.js | 0 .../kcfinder/js/browser/clipboard.js | 0 .../ckeditor.old/kcfinder/js/browser/files.js | 0 .../kcfinder/js/browser/folders.js | 0 .../kcfinder/js/browser/index.php | 0 .../ckeditor.old/kcfinder/js/browser/init.js | 0 .../ckeditor.old/kcfinder/js/browser/misc.js | 0 .../kcfinder/js/browser/settings.js | 0 .../kcfinder/js/browser/toolbar.js | 0 .../js/ckeditor.old/kcfinder/js/helper.js | 0 .../ckeditor.old/kcfinder/js/jquery.drag.js | 0 .../js/ckeditor.old/kcfinder/js/jquery.js | 0 .../kcfinder/js/jquery.rightClick.js | 0 .../js/ckeditor.old/kcfinder/js_localize.php | 0 .../js/ckeditor.old/kcfinder/lang/.htaccess | 0 .../js/ckeditor.old/kcfinder/lang/bg.php | 0 .../js/ckeditor.old/kcfinder/lang/cs.php | 0 .../js/ckeditor.old/kcfinder/lang/de.php | 0 .../js/ckeditor.old/kcfinder/lang/en.php | 0 .../js/ckeditor.old/kcfinder/lang/es.php | 0 .../js/ckeditor.old/kcfinder/lang/fr.php | 0 .../js/ckeditor.old/kcfinder/lang/hu.php | 0 .../js/ckeditor.old/kcfinder/lang/it.php | 0 .../js/ckeditor.old/kcfinder/lang/pl.php | 0 .../js/ckeditor.old/kcfinder/lang/pt.php | 0 .../js/ckeditor.old/kcfinder/lang/ru.php | 0 .../js/ckeditor.old/kcfinder/lib/.htaccess | 0 .../js/ckeditor.old/kcfinder/lib/class_gd.php | 4 +- .../ckeditor.old/kcfinder/lib/class_input.php | 0 .../kcfinder/lib/class_zipFolder.php | 0 .../ckeditor.old/kcfinder/lib/helper_dir.php | 0 .../ckeditor.old/kcfinder/lib/helper_file.php | 0 .../kcfinder/lib/helper_httpCache.php | 0 .../ckeditor.old/kcfinder/lib/helper_path.php | 0 .../ckeditor.old/kcfinder/lib/helper_text.php | 0 .../kcfinder/themes/oxygen/about.txt | 0 .../themes/oxygen/img/files/big/..png | Bin .../themes/oxygen/img/files/big/.image.png | Bin .../themes/oxygen/img/files/big/avi.png | Bin .../themes/oxygen/img/files/big/bat.png | Bin .../themes/oxygen/img/files/big/bmp.png | Bin .../themes/oxygen/img/files/big/bz2.png | Bin .../themes/oxygen/img/files/big/ccd.png | Bin .../themes/oxygen/img/files/big/cgi.png | Bin .../themes/oxygen/img/files/big/com.png | Bin .../themes/oxygen/img/files/big/csh.png | Bin .../themes/oxygen/img/files/big/cue.png | Bin .../themes/oxygen/img/files/big/deb.png | Bin .../themes/oxygen/img/files/big/dll.png | Bin .../themes/oxygen/img/files/big/doc.png | Bin .../themes/oxygen/img/files/big/docx.png | Bin .../themes/oxygen/img/files/big/exe.png | Bin .../themes/oxygen/img/files/big/fla.png | Bin .../themes/oxygen/img/files/big/flv.png | Bin .../themes/oxygen/img/files/big/fon.png | Bin .../themes/oxygen/img/files/big/gif.png | Bin .../themes/oxygen/img/files/big/gz.png | Bin .../themes/oxygen/img/files/big/htm.png | Bin .../themes/oxygen/img/files/big/html.png | Bin .../themes/oxygen/img/files/big/ini.png | Bin .../themes/oxygen/img/files/big/iso.png | Bin .../themes/oxygen/img/files/big/jar.png | Bin .../themes/oxygen/img/files/big/java.png | Bin .../themes/oxygen/img/files/big/jpeg.png | Bin .../themes/oxygen/img/files/big/jpg.png | Bin .../themes/oxygen/img/files/big/js.png | Bin .../themes/oxygen/img/files/big/mds.png | Bin .../themes/oxygen/img/files/big/mdx.png | Bin .../themes/oxygen/img/files/big/mid.png | Bin .../themes/oxygen/img/files/big/midi.png | Bin .../themes/oxygen/img/files/big/mkv.png | Bin .../themes/oxygen/img/files/big/mov.png | Bin .../themes/oxygen/img/files/big/mp3.png | Bin .../themes/oxygen/img/files/big/mpeg.png | Bin .../themes/oxygen/img/files/big/mpg.png | Bin .../themes/oxygen/img/files/big/nfo.png | Bin .../themes/oxygen/img/files/big/nrg.png | Bin .../themes/oxygen/img/files/big/ogg.png | Bin .../themes/oxygen/img/files/big/pdf.png | Bin .../themes/oxygen/img/files/big/php.png | Bin .../themes/oxygen/img/files/big/phps.png | Bin .../themes/oxygen/img/files/big/pl.png | Bin .../themes/oxygen/img/files/big/pm.png | Bin .../themes/oxygen/img/files/big/png.png | Bin .../themes/oxygen/img/files/big/ppt.png | Bin .../themes/oxygen/img/files/big/pptx.png | Bin .../themes/oxygen/img/files/big/qt.png | Bin .../themes/oxygen/img/files/big/rpm.png | Bin .../themes/oxygen/img/files/big/rtf.png | Bin .../themes/oxygen/img/files/big/sh.png | Bin .../themes/oxygen/img/files/big/srt.png | Bin .../themes/oxygen/img/files/big/sub.png | Bin .../themes/oxygen/img/files/big/swf.png | Bin .../themes/oxygen/img/files/big/tgz.png | Bin .../themes/oxygen/img/files/big/tif.png | Bin .../themes/oxygen/img/files/big/tiff.png | Bin .../themes/oxygen/img/files/big/torrent.png | Bin .../themes/oxygen/img/files/big/ttf.png | Bin .../themes/oxygen/img/files/big/txt.png | Bin .../themes/oxygen/img/files/big/wav.png | Bin .../themes/oxygen/img/files/big/wma.png | Bin .../themes/oxygen/img/files/big/xls.png | Bin .../themes/oxygen/img/files/big/xlsx.png | Bin .../themes/oxygen/img/files/big/zip.png | Bin .../themes/oxygen/img/files/small/..png | Bin .../themes/oxygen/img/files/small/.image.png | Bin .../themes/oxygen/img/files/small/avi.png | Bin .../themes/oxygen/img/files/small/bat.png | Bin .../themes/oxygen/img/files/small/bmp.png | Bin .../themes/oxygen/img/files/small/bz2.png | Bin .../themes/oxygen/img/files/small/ccd.png | Bin .../themes/oxygen/img/files/small/cgi.png | Bin .../themes/oxygen/img/files/small/com.png | Bin .../themes/oxygen/img/files/small/csh.png | Bin .../themes/oxygen/img/files/small/cue.png | Bin .../themes/oxygen/img/files/small/deb.png | Bin .../themes/oxygen/img/files/small/dll.png | Bin .../themes/oxygen/img/files/small/doc.png | Bin .../themes/oxygen/img/files/small/docx.png | Bin .../themes/oxygen/img/files/small/exe.png | Bin .../themes/oxygen/img/files/small/fla.png | Bin .../themes/oxygen/img/files/small/flv.png | Bin .../themes/oxygen/img/files/small/fon.png | Bin .../themes/oxygen/img/files/small/gif.png | Bin .../themes/oxygen/img/files/small/gz.png | Bin .../themes/oxygen/img/files/small/htm.png | Bin .../themes/oxygen/img/files/small/html.png | Bin .../themes/oxygen/img/files/small/ini.png | Bin .../themes/oxygen/img/files/small/iso.png | Bin .../themes/oxygen/img/files/small/jar.png | Bin .../themes/oxygen/img/files/small/java.png | Bin .../themes/oxygen/img/files/small/jpeg.png | Bin .../themes/oxygen/img/files/small/jpg.png | Bin .../themes/oxygen/img/files/small/js.png | Bin .../themes/oxygen/img/files/small/mds.png | Bin .../themes/oxygen/img/files/small/mdx.png | Bin .../themes/oxygen/img/files/small/mid.png | Bin .../themes/oxygen/img/files/small/midi.png | Bin .../themes/oxygen/img/files/small/mkv.png | Bin .../themes/oxygen/img/files/small/mov.png | Bin .../themes/oxygen/img/files/small/mp3.png | Bin .../themes/oxygen/img/files/small/mpeg.png | Bin .../themes/oxygen/img/files/small/mpg.png | Bin .../themes/oxygen/img/files/small/nfo.png | Bin .../themes/oxygen/img/files/small/nrg.png | Bin .../themes/oxygen/img/files/small/ogg.png | Bin .../themes/oxygen/img/files/small/pdf.png | Bin .../themes/oxygen/img/files/small/php.png | Bin .../themes/oxygen/img/files/small/phps.png | Bin .../themes/oxygen/img/files/small/pl.png | Bin .../themes/oxygen/img/files/small/pm.png | Bin .../themes/oxygen/img/files/small/png.png | Bin .../themes/oxygen/img/files/small/ppt.png | Bin .../themes/oxygen/img/files/small/pptx.png | Bin .../themes/oxygen/img/files/small/qt.png | Bin .../themes/oxygen/img/files/small/rpm.png | Bin .../themes/oxygen/img/files/small/rtf.png | Bin .../themes/oxygen/img/files/small/sh.png | Bin .../themes/oxygen/img/files/small/srt.png | Bin .../themes/oxygen/img/files/small/sub.png | Bin .../themes/oxygen/img/files/small/swf.png | Bin .../themes/oxygen/img/files/small/tgz.png | Bin .../themes/oxygen/img/files/small/tif.png | Bin .../themes/oxygen/img/files/small/tiff.png | Bin .../themes/oxygen/img/files/small/torrent.png | Bin .../themes/oxygen/img/files/small/ttf.png | Bin .../themes/oxygen/img/files/small/txt.png | Bin .../themes/oxygen/img/files/small/wav.png | Bin .../themes/oxygen/img/files/small/wma.png | Bin .../themes/oxygen/img/files/small/xls.png | Bin .../themes/oxygen/img/files/small/xlsx.png | Bin .../themes/oxygen/img/files/small/zip.png | Bin .../themes/oxygen/img/icons/about.png | Bin .../themes/oxygen/img/icons/clipboard-add.png | Bin .../oxygen/img/icons/clipboard-clear.png | Bin .../themes/oxygen/img/icons/clipboard.png | Bin .../kcfinder/themes/oxygen/img/icons/copy.png | Bin .../themes/oxygen/img/icons/delete.png | Bin .../themes/oxygen/img/icons/download.png | Bin .../themes/oxygen/img/icons/folder-new.png | Bin .../themes/oxygen/img/icons/maximize.png | Bin .../kcfinder/themes/oxygen/img/icons/move.png | Bin .../themes/oxygen/img/icons/refresh.png | Bin .../themes/oxygen/img/icons/rename.png | Bin .../themes/oxygen/img/icons/select.png | Bin .../themes/oxygen/img/icons/settings.png | Bin .../themes/oxygen/img/icons/upload.png | Bin .../kcfinder/themes/oxygen/img/icons/view.png | Bin .../kcfinder/themes/oxygen/img/loading.gif | Bin .../themes/oxygen/img/tree/denied.png | Bin .../themes/oxygen/img/tree/folder.png | Bin .../themes/oxygen/img/tree/folder_current.png | Bin .../kcfinder/themes/oxygen/img/tree/minus.png | Bin .../kcfinder/themes/oxygen/img/tree/plus.png | Bin .../kcfinder/themes/oxygen/init.js | 0 .../kcfinder/themes/oxygen/style.css | 0 .../js/ckeditor.old/kcfinder/tpl/.htaccess | 0 .../js/ckeditor.old/kcfinder/tpl/tpl__css.php | 0 .../kcfinder/tpl/tpl__javascript.php | 0 .../ckeditor.old/kcfinder/tpl/tpl_browser.php | 0 .../ckeditor.old/kcfinder/tpl/tpl_chDir.php | 0 .../kcfinder/tpl/tpl_deleteDir.php | 0 .../ckeditor.old/kcfinder/tpl/tpl_error.php | 0 .../ckeditor.old/kcfinder/tpl/tpl_expand.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_init.php | 0 .../kcfinder/tpl/tpl_renameDir.php | 0 .../js/ckeditor.old/kcfinder/upload.php | 0 .../js/ckeditor.old/kcfinder/upload/.htaccess | 0 .../js/ckeditor.old/lang/_languages.js | 0 .../ckeditor.old/lang/_translationstatus.txt | 0 branding/default/js/ckeditor.old/lang/af.js | 0 branding/default/js/ckeditor.old/lang/ar.js | 0 branding/default/js/ckeditor.old/lang/bg.js | 0 branding/default/js/ckeditor.old/lang/bn.js | 0 branding/default/js/ckeditor.old/lang/bs.js | 0 branding/default/js/ckeditor.old/lang/ca.js | 0 branding/default/js/ckeditor.old/lang/cs.js | 0 branding/default/js/ckeditor.old/lang/cy.js | 0 branding/default/js/ckeditor.old/lang/da.js | 0 branding/default/js/ckeditor.old/lang/de.js | 0 branding/default/js/ckeditor.old/lang/el.js | 0 .../default/js/ckeditor.old/lang/en-au.js | 0 .../default/js/ckeditor.old/lang/en-ca.js | 0 .../default/js/ckeditor.old/lang/en-gb.js | 0 branding/default/js/ckeditor.old/lang/en.js | 0 branding/default/js/ckeditor.old/lang/eo.js | 0 branding/default/js/ckeditor.old/lang/es.js | 0 branding/default/js/ckeditor.old/lang/et.js | 0 branding/default/js/ckeditor.old/lang/eu.js | 0 branding/default/js/ckeditor.old/lang/fa.js | 0 branding/default/js/ckeditor.old/lang/fi.js | 0 branding/default/js/ckeditor.old/lang/fo.js | 0 .../default/js/ckeditor.old/lang/fr-ca.js | 0 branding/default/js/ckeditor.old/lang/fr.js | 0 branding/default/js/ckeditor.old/lang/gl.js | 0 branding/default/js/ckeditor.old/lang/gu.js | 0 branding/default/js/ckeditor.old/lang/he.js | 0 branding/default/js/ckeditor.old/lang/hi.js | 0 branding/default/js/ckeditor.old/lang/hr.js | 0 branding/default/js/ckeditor.old/lang/hu.js | 0 branding/default/js/ckeditor.old/lang/is.js | 0 branding/default/js/ckeditor.old/lang/it.js | 0 branding/default/js/ckeditor.old/lang/ja.js | 0 branding/default/js/ckeditor.old/lang/ka.js | 0 branding/default/js/ckeditor.old/lang/km.js | 0 branding/default/js/ckeditor.old/lang/ko.js | 0 branding/default/js/ckeditor.old/lang/ku.js | 0 branding/default/js/ckeditor.old/lang/lt.js | 0 branding/default/js/ckeditor.old/lang/lv.js | 0 branding/default/js/ckeditor.old/lang/mk.js | 0 branding/default/js/ckeditor.old/lang/mn.js | 0 branding/default/js/ckeditor.old/lang/ms.js | 0 branding/default/js/ckeditor.old/lang/nb.js | 0 branding/default/js/ckeditor.old/lang/nl.js | 0 branding/default/js/ckeditor.old/lang/no.js | 0 branding/default/js/ckeditor.old/lang/pl.js | 0 .../default/js/ckeditor.old/lang/pt-br.js | 0 branding/default/js/ckeditor.old/lang/pt.js | 0 branding/default/js/ckeditor.old/lang/ro.js | 0 branding/default/js/ckeditor.old/lang/ru.js | 0 branding/default/js/ckeditor.old/lang/sk.js | 0 branding/default/js/ckeditor.old/lang/sl.js | 0 .../default/js/ckeditor.old/lang/sr-latn.js | 0 branding/default/js/ckeditor.old/lang/sr.js | 0 branding/default/js/ckeditor.old/lang/sv.js | 0 branding/default/js/ckeditor.old/lang/th.js | 0 branding/default/js/ckeditor.old/lang/tr.js | 0 branding/default/js/ckeditor.old/lang/ug.js | 0 branding/default/js/ckeditor.old/lang/uk.js | 0 branding/default/js/ckeditor.old/lang/vi.js | 0 .../default/js/ckeditor.old/lang/zh-cn.js | 0 branding/default/js/ckeditor.old/lang/zh.js | 0 .../MediaEmbed/dialogs/mediaembed.html | 0 .../plugins/MediaEmbed/images/icon.gif | Bin .../ckeditor.old/plugins/MediaEmbed/plugin.js | 0 .../plugins/a11yhelp/dialogs/a11yhelp.js | 0 .../ckeditor.old/plugins/a11yhelp/lang/en.js | 0 .../ckeditor.old/plugins/a11yhelp/lang/he.js | 0 .../plugins/about/dialogs/about.js | 0 .../plugins/about/dialogs/logo_ckeditor.png | Bin .../ckeditor.old/plugins/adobeair/plugin.js | 0 .../js/ckeditor.old/plugins/ajax/plugin.js | 0 .../ckeditor.old/plugins/autogrow/plugin.js | 0 .../js/ckeditor.old/plugins/bbcode/plugin.js | 0 .../plugins/clipboard/dialogs/paste.js | 0 .../colordialog/dialogs/colordialog.js | 0 .../ckeditor.old/plugins/devtools/lang/en.js | 0 .../ckeditor.old/plugins/devtools/plugin.js | 0 .../plugins/dialog/dialogDefinition.js | 0 .../ckeditor.old/plugins/div/dialogs/div.js | 0 .../plugins/docprops/dialogs/docprops.js | 0 .../ckeditor.old/plugins/docprops/plugin.js | 0 .../plugins/fakeobjects/images/spacer.gif | Bin .../ckeditor.old/plugins/find/dialogs/find.js | 0 .../plugins/flash/dialogs/flash.js | 0 .../plugins/flash/images/placeholder.png | Bin .../plugins/forms/dialogs/button.js | 0 .../plugins/forms/dialogs/checkbox.js | 0 .../plugins/forms/dialogs/form.js | 0 .../plugins/forms/dialogs/hiddenfield.js | 0 .../plugins/forms/dialogs/radio.js | 0 .../plugins/forms/dialogs/select.js | 0 .../plugins/forms/dialogs/textarea.js | 0 .../plugins/forms/dialogs/textfield.js | 0 .../plugins/forms/images/hiddenfield.gif | Bin .../default/js/ckeditor.old/plugins/icons.png | Bin .../plugins/iframe/dialogs/iframe.js | 0 .../plugins/iframe/images/placeholder.png | Bin .../plugins/iframedialog/plugin.js | 0 .../plugins/image/dialogs/image.js | 0 .../plugins/link/dialogs/anchor.js | 0 .../ckeditor.old/plugins/link/dialogs/link.js | 0 .../plugins/link/images/anchor.gif | Bin .../plugins/link/images/anchor.png | Bin .../plugins/liststyle/dialogs/liststyle.js | 0 .../plugins/pagebreak/images/pagebreak.gif | Bin .../plugins/pastefromword/filter/default.js | 0 .../plugins/pastetext/dialogs/pastetext.js | 0 .../placeholder/dialogs/placeholder.js | 0 .../plugins/placeholder/lang/en.js | 0 .../plugins/placeholder/lang/he.js | 0 .../plugins/placeholder/placeholder.gif | Bin .../plugins/placeholder/plugin.js | 0 .../plugins/scayt/dialogs/options.js | 0 .../plugins/scayt/dialogs/toolbar.css | 0 .../showblocks/images/block_address.png | Bin .../showblocks/images/block_blockquote.png | Bin .../plugins/showblocks/images/block_div.png | Bin .../plugins/showblocks/images/block_h1.png | Bin .../plugins/showblocks/images/block_h2.png | Bin .../plugins/showblocks/images/block_h3.png | Bin .../plugins/showblocks/images/block_h4.png | Bin .../plugins/showblocks/images/block_h5.png | Bin .../plugins/showblocks/images/block_h6.png | Bin .../plugins/showblocks/images/block_p.png | Bin .../plugins/showblocks/images/block_pre.png | Bin .../plugins/smiley/dialogs/smiley.js | 0 .../plugins/smiley/images/angel_smile.gif | Bin .../plugins/smiley/images/angry_smile.gif | Bin .../plugins/smiley/images/broken_heart.gif | Bin .../plugins/smiley/images/confused_smile.gif | Bin .../plugins/smiley/images/cry_smile.gif | Bin .../plugins/smiley/images/devil_smile.gif | Bin .../smiley/images/embaressed_smile.gif | Bin .../plugins/smiley/images/envelope.gif | Bin .../plugins/smiley/images/heart.gif | Bin .../plugins/smiley/images/kiss.gif | Bin .../plugins/smiley/images/lightbulb.gif | Bin .../plugins/smiley/images/omg_smile.gif | Bin .../plugins/smiley/images/regular_smile.gif | Bin .../plugins/smiley/images/sad_smile.gif | Bin .../plugins/smiley/images/shades_smile.gif | Bin .../plugins/smiley/images/teeth_smile.gif | Bin .../plugins/smiley/images/thumbs_down.gif | Bin .../plugins/smiley/images/thumbs_up.gif | Bin .../plugins/smiley/images/tounge_smile.gif | Bin .../images/whatchutalkingabout_smile.gif | Bin .../plugins/smiley/images/wink_smile.gif | Bin .../specialchar/dialogs/specialchar.js | 0 .../plugins/specialchar/lang/en.js | 0 .../plugins/styles/styles/default.js | 0 .../plugins/stylesheetparser/plugin.js | 0 .../plugins/table/dialogs/table.js | 0 .../plugins/tableresize/plugin.js | 0 .../plugins/tabletools/dialogs/tableCell.js | 0 .../plugins/templates/dialogs/templates.js | 0 .../plugins/templates/templates/default.js | 0 .../templates/templates/images/template1.gif | Bin .../templates/templates/images/template2.gif | Bin .../templates/templates/images/template3.gif | Bin .../plugins/uicolor/dialogs/uicolor.js | 0 .../ckeditor.old/plugins/uicolor/lang/en.js | 0 .../ckeditor.old/plugins/uicolor/lang/he.js | 0 .../js/ckeditor.old/plugins/uicolor/plugin.js | 0 .../ckeditor.old/plugins/uicolor/uicolor.gif | Bin .../plugins/uicolor/yui/assets/hue_bg.png | Bin .../plugins/uicolor/yui/assets/hue_thumb.png | Bin .../uicolor/yui/assets/picker_mask.png | Bin .../uicolor/yui/assets/picker_thumb.png | Bin .../plugins/uicolor/yui/assets/yui.css | 0 .../ckeditor.old/plugins/uicolor/yui/yui.js | 0 .../plugins/wsc/dialogs/ciframe.html | 0 .../plugins/wsc/dialogs/tmpFrameset.html | 0 .../ckeditor.old/plugins/wsc/dialogs/wsc.css | 0 .../ckeditor.old/plugins/wsc/dialogs/wsc.js | 0 .../js/ckeditor.old/plugins/xml/plugin.js | 0 .../default/js/ckeditor.old/samples/ajax.html | 0 .../default/js/ckeditor.old/samples/api.html | 0 .../js/ckeditor.old/samples/appendto.html | 0 .../samples/assets/inlineall/logo.png | Bin .../assets/outputxhtml/outputxhtml.css | 0 .../samples/assets/posteddata.php | 0 .../js/ckeditor.old/samples/assets/sample.css | 0 .../js/ckeditor.old/samples/assets/sample.jpg | Bin .../samples/assets/uilanguages/languages.js | 0 .../ckeditor.old/samples/datafiltering.html | 0 .../js/ckeditor.old/samples/divreplace.html | 0 .../js/ckeditor.old/samples/index.html | 0 .../js/ckeditor.old/samples/inlineall.html | 0 .../js/ckeditor.old/samples/inlinebycode.html | 0 .../plugins/dialog/assets/my_dialog.js | 0 .../samples/plugins/dialog/dialog.html | 0 .../samples/plugins/enterkey/enterkey.html | 0 .../samples/plugins/toolbar/toolbar.html | 0 .../samples/plugins/wysiwygarea/fullpage.html | 0 .../js/ckeditor.old/samples/readonly.html | 0 .../ckeditor.old/samples/replacebyclass.html | 0 .../ckeditor.old/samples/replacebycode.html | 0 .../js/ckeditor.old/samples/sample.css | 0 .../default/js/ckeditor.old/samples/sample.js | 0 .../samples/sample_posteddata.php | 0 .../js/ckeditor.old/samples/tabindex.html | 0 .../js/ckeditor.old/samples/uicolor.html | 0 .../js/ckeditor.old/samples/uilanguages.html | 0 .../js/ckeditor.old/samples/xhtmlstyle.html | 0 .../js/ckeditor.old/skins/kama/dialog.css | 0 .../js/ckeditor.old/skins/kama/editor.css | 0 .../js/ckeditor.old/skins/kama/icons.png | Bin .../js/ckeditor.old/skins/kama/icons_rtl.png | Bin .../skins/kama/images/dialog_sides.gif | Bin .../skins/kama/images/dialog_sides.png | Bin .../skins/kama/images/dialog_sides_rtl.png | Bin .../ckeditor.old/skins/kama/images/mini.gif | Bin .../skins/kama/images/noimage.png | Bin .../skins/kama/images/sprites.png | Bin .../skins/kama/images/sprites_ie6.png | Bin .../skins/kama/images/toolbar_start.gif | Bin .../js/ckeditor.old/skins/kama/skin.js | 0 .../js/ckeditor.old/skins/kama/templates.css | 0 .../js/ckeditor.old/skins/moono/dialog.css | 0 .../js/ckeditor.old/skins/moono/dialog_ie.css | 0 .../ckeditor.old/skins/moono/dialog_ie7.css | 0 .../ckeditor.old/skins/moono/dialog_ie8.css | 0 .../skins/moono/dialog_iequirks.css | 0 .../ckeditor.old/skins/moono/dialog_opera.css | 0 .../js/ckeditor.old/skins/moono/editor.css | 0 .../ckeditor.old/skins/moono/editor_gecko.css | 0 .../js/ckeditor.old/skins/moono/editor_ie.css | 0 .../ckeditor.old/skins/moono/editor_ie7.css | 0 .../ckeditor.old/skins/moono/editor_ie8.css | 0 .../skins/moono/editor_iequirks.css | 0 .../js/ckeditor.old/skins/moono/icons.png | Bin .../ckeditor.old/skins/moono/images/arrow.png | Bin .../ckeditor.old/skins/moono/images/close.png | Bin .../ckeditor.old/skins/moono/images/mini.png | Bin .../js/ckeditor.old/skins/moono/readme.md | 0 .../ckeditor.old/skins/office2003/dialog.css | 0 .../ckeditor.old/skins/office2003/editor.css | 0 .../ckeditor.old/skins/office2003/icons.png | Bin .../skins/office2003/icons_rtl.png | Bin .../skins/office2003/images/dialog_sides.gif | Bin .../skins/office2003/images/dialog_sides.png | Bin .../office2003/images/dialog_sides_rtl.png | Bin .../skins/office2003/images/mini.gif | Bin .../skins/office2003/images/noimage.png | Bin .../skins/office2003/images/sprites.png | Bin .../skins/office2003/images/sprites_ie6.png | Bin .../js/ckeditor.old/skins/office2003/skin.js | 0 .../skins/office2003/templates.css | 0 .../js/ckeditor.old/skins/v2/dialog.css | 0 .../js/ckeditor.old/skins/v2/editor.css | 0 .../js/ckeditor.old/skins/v2/icons.png | Bin .../js/ckeditor.old/skins/v2/icons_rtl.png | Bin .../skins/v2/images/dialog_sides.gif | Bin .../skins/v2/images/dialog_sides.png | Bin .../skins/v2/images/dialog_sides_rtl.png | Bin .../js/ckeditor.old/skins/v2/images/mini.gif | Bin .../ckeditor.old/skins/v2/images/noimage.png | Bin .../ckeditor.old/skins/v2/images/sprites.png | Bin .../skins/v2/images/sprites_ie6.png | Bin .../skins/v2/images/toolbar_start.gif | Bin .../default/js/ckeditor.old/skins/v2/skin.js | 0 .../js/ckeditor.old/skins/v2/templates.css | 0 branding/default/js/ckeditor.old/styles.js | 0 .../js/ckeditor.old/themes/default/theme.js | 0 branding/default/js/ckeditor/CHANGES.md | 0 branding/default/js/ckeditor/LICENSE.md | 0 branding/default/js/ckeditor/README.md | 0 branding/default/js/ckeditor/build-config.js | 0 .../js/ckeditor/kcfinder/core/autoload.php | 4 +- .../js/ckeditor/kcfinder/lib/class_gd.php | 4 +- .../dialogs/lang/_translationstatus.txt | 0 .../plugins/a11yhelp/dialogs/lang/ar.js | 0 .../plugins/a11yhelp/dialogs/lang/bg.js | 0 .../plugins/a11yhelp/dialogs/lang/ca.js | 0 .../plugins/a11yhelp/dialogs/lang/cs.js | 0 .../plugins/a11yhelp/dialogs/lang/cy.js | 0 .../plugins/a11yhelp/dialogs/lang/da.js | 0 .../plugins/a11yhelp/dialogs/lang/de.js | 0 .../plugins/a11yhelp/dialogs/lang/el.js | 0 .../plugins/a11yhelp/dialogs/lang/en.js | 0 .../plugins/a11yhelp/dialogs/lang/eo.js | 0 .../plugins/a11yhelp/dialogs/lang/et.js | 0 .../plugins/a11yhelp/dialogs/lang/fa.js | 0 .../plugins/a11yhelp/dialogs/lang/fi.js | 0 .../plugins/a11yhelp/dialogs/lang/fr.js | 0 .../plugins/a11yhelp/dialogs/lang/gu.js | 0 .../plugins/a11yhelp/dialogs/lang/he.js | 0 .../plugins/a11yhelp/dialogs/lang/hi.js | 0 .../plugins/a11yhelp/dialogs/lang/hr.js | 0 .../plugins/a11yhelp/dialogs/lang/hu.js | 0 .../plugins/a11yhelp/dialogs/lang/it.js | 0 .../plugins/a11yhelp/dialogs/lang/ku.js | 0 .../plugins/a11yhelp/dialogs/lang/lt.js | 0 .../plugins/a11yhelp/dialogs/lang/lv.js | 0 .../plugins/a11yhelp/dialogs/lang/mk.js | 0 .../plugins/a11yhelp/dialogs/lang/mn.js | 0 .../plugins/a11yhelp/dialogs/lang/nb.js | 0 .../plugins/a11yhelp/dialogs/lang/nl.js | 0 .../plugins/a11yhelp/dialogs/lang/no.js | 0 .../plugins/a11yhelp/dialogs/lang/pl.js | 0 .../plugins/a11yhelp/dialogs/lang/pt-br.js | 0 .../plugins/a11yhelp/dialogs/lang/pt.js | 0 .../plugins/a11yhelp/dialogs/lang/ro.js | 0 .../plugins/a11yhelp/dialogs/lang/ru.js | 0 .../plugins/a11yhelp/dialogs/lang/sk.js | 0 .../plugins/a11yhelp/dialogs/lang/sl.js | 0 .../plugins/a11yhelp/dialogs/lang/tr.js | 0 .../plugins/a11yhelp/dialogs/lang/ug.js | 0 .../plugins/a11yhelp/dialogs/lang/uk.js | 0 .../plugins/a11yhelp/dialogs/lang/vi.js | 0 .../plugins/a11yhelp/dialogs/lang/zh-cn.js | 0 .../plugins/codemirror/css/codemirror.css | 0 .../plugins/codemirror/js/codemirror.js | 0 .../js/ckeditor/plugins/codemirror/js/css.js | 0 .../plugins/codemirror/js/htmlmixed.js | 0 .../plugins/codemirror/js/javascript.js | 0 .../plugins/codemirror/js/util/closetag.js | 0 .../plugins/codemirror/js/util/colorize.js | 0 .../codemirror/js/util/continuecomment.js | 0 .../codemirror/js/util/continuelist.js | 0 .../plugins/codemirror/js/util/dialog.css | 0 .../plugins/codemirror/js/util/dialog.js | 0 .../plugins/codemirror/js/util/foldcode.js | 0 .../plugins/codemirror/js/util/formatting.js | 0 .../codemirror/js/util/javascript-hint.js | 0 .../plugins/codemirror/js/util/loadmode.js | 0 .../codemirror/js/util/match-highlighter.js | 0 .../codemirror/js/util/matchbrackets.js | 0 .../plugins/codemirror/js/util/multiplex.js | 0 .../plugins/codemirror/js/util/overlay.js | 0 .../plugins/codemirror/js/util/pig-hint.js | 0 .../codemirror/js/util/runmode-standalone.js | 0 .../plugins/codemirror/js/util/runmode.js | 0 .../plugins/codemirror/js/util/search.js | 0 .../codemirror/js/util/searchcursor.js | 0 .../codemirror/js/util/simple-hint.css | 0 .../plugins/codemirror/js/util/simple-hint.js | 0 .../plugins/codemirror/js/util/xml-hint.js | 0 .../js/ckeditor/plugins/codemirror/js/xml.js | 0 .../codemirror/theme/ambiance-mobile.css | 0 .../plugins/codemirror/theme/ambiance.css | 0 .../plugins/codemirror/theme/blackboard.css | 0 .../plugins/codemirror/theme/cobalt.css | 0 .../plugins/codemirror/theme/eclipse.css | 0 .../plugins/codemirror/theme/elegant.css | 0 .../plugins/codemirror/theme/erlang-dark.css | 0 .../plugins/codemirror/theme/lesser-dark.css | 0 .../plugins/codemirror/theme/monokai.css | 0 .../plugins/codemirror/theme/neat.css | 0 .../plugins/codemirror/theme/night.css | 0 .../plugins/codemirror/theme/rubyblue.css | 0 .../plugins/codemirror/theme/solarized.css | 0 .../plugins/codemirror/theme/twilight.css | 0 .../plugins/codemirror/theme/vibrant-ink.css | 0 .../plugins/codemirror/theme/xq-dark.css | 0 .../plugins/colorbutton/icons/bgcolor.png | Bin .../plugins/colorbutton/icons/textcolor.png | Bin .../ckeditor/plugins/colorbutton/lang/af.js | 0 .../ckeditor/plugins/colorbutton/lang/ar.js | 0 .../ckeditor/plugins/colorbutton/lang/bg.js | 0 .../ckeditor/plugins/colorbutton/lang/bn.js | 0 .../ckeditor/plugins/colorbutton/lang/bs.js | 0 .../ckeditor/plugins/colorbutton/lang/ca.js | 0 .../ckeditor/plugins/colorbutton/lang/cs.js | 0 .../ckeditor/plugins/colorbutton/lang/cy.js | 0 .../ckeditor/plugins/colorbutton/lang/da.js | 0 .../ckeditor/plugins/colorbutton/lang/de.js | 0 .../ckeditor/plugins/colorbutton/lang/el.js | 0 .../plugins/colorbutton/lang/en-au.js | 0 .../plugins/colorbutton/lang/en-ca.js | 0 .../plugins/colorbutton/lang/en-gb.js | 0 .../ckeditor/plugins/colorbutton/lang/en.js | 0 .../ckeditor/plugins/colorbutton/lang/eo.js | 0 .../ckeditor/plugins/colorbutton/lang/es.js | 0 .../ckeditor/plugins/colorbutton/lang/et.js | 0 .../ckeditor/plugins/colorbutton/lang/eu.js | 0 .../ckeditor/plugins/colorbutton/lang/fa.js | 0 .../ckeditor/plugins/colorbutton/lang/fi.js | 0 .../ckeditor/plugins/colorbutton/lang/fo.js | 0 .../plugins/colorbutton/lang/fr-ca.js | 0 .../ckeditor/plugins/colorbutton/lang/fr.js | 0 .../ckeditor/plugins/colorbutton/lang/gl.js | 0 .../ckeditor/plugins/colorbutton/lang/gu.js | 0 .../ckeditor/plugins/colorbutton/lang/he.js | 0 .../ckeditor/plugins/colorbutton/lang/hi.js | 0 .../ckeditor/plugins/colorbutton/lang/hr.js | 0 .../ckeditor/plugins/colorbutton/lang/hu.js | 0 .../ckeditor/plugins/colorbutton/lang/is.js | 0 .../ckeditor/plugins/colorbutton/lang/it.js | 0 .../ckeditor/plugins/colorbutton/lang/ja.js | 0 .../ckeditor/plugins/colorbutton/lang/ka.js | 0 .../ckeditor/plugins/colorbutton/lang/km.js | 0 .../ckeditor/plugins/colorbutton/lang/ko.js | 0 .../ckeditor/plugins/colorbutton/lang/ku.js | 0 .../ckeditor/plugins/colorbutton/lang/lt.js | 0 .../ckeditor/plugins/colorbutton/lang/lv.js | 0 .../ckeditor/plugins/colorbutton/lang/mk.js | 0 .../ckeditor/plugins/colorbutton/lang/mn.js | 0 .../ckeditor/plugins/colorbutton/lang/ms.js | 0 .../ckeditor/plugins/colorbutton/lang/nb.js | 0 .../ckeditor/plugins/colorbutton/lang/nl.js | 0 .../ckeditor/plugins/colorbutton/lang/no.js | 0 .../ckeditor/plugins/colorbutton/lang/pl.js | 0 .../plugins/colorbutton/lang/pt-br.js | 0 .../ckeditor/plugins/colorbutton/lang/pt.js | 0 .../ckeditor/plugins/colorbutton/lang/ro.js | 0 .../ckeditor/plugins/colorbutton/lang/ru.js | 0 .../ckeditor/plugins/colorbutton/lang/sk.js | 0 .../ckeditor/plugins/colorbutton/lang/sl.js | 0 .../plugins/colorbutton/lang/sr-latn.js | 0 .../ckeditor/plugins/colorbutton/lang/sr.js | 0 .../ckeditor/plugins/colorbutton/lang/sv.js | 0 .../ckeditor/plugins/colorbutton/lang/th.js | 0 .../ckeditor/plugins/colorbutton/lang/tr.js | 0 .../ckeditor/plugins/colorbutton/lang/ug.js | 0 .../ckeditor/plugins/colorbutton/lang/uk.js | 0 .../ckeditor/plugins/colorbutton/lang/vi.js | 0 .../plugins/colorbutton/lang/zh-cn.js | 0 .../ckeditor/plugins/colorbutton/lang/zh.js | 0 .../js/ckeditor/plugins/colorbutton/plugin.js | 0 .../plugins/fakeobjects/images/spacer.gif | Bin .../js/ckeditor/plugins/font/lang/af.js | 0 .../js/ckeditor/plugins/font/lang/ar.js | 0 .../js/ckeditor/plugins/font/lang/bg.js | 0 .../js/ckeditor/plugins/font/lang/bn.js | 0 .../js/ckeditor/plugins/font/lang/bs.js | 0 .../js/ckeditor/plugins/font/lang/ca.js | 0 .../js/ckeditor/plugins/font/lang/cs.js | 0 .../js/ckeditor/plugins/font/lang/cy.js | 0 .../js/ckeditor/plugins/font/lang/da.js | 0 .../js/ckeditor/plugins/font/lang/de.js | 0 .../js/ckeditor/plugins/font/lang/el.js | 0 .../js/ckeditor/plugins/font/lang/en-au.js | 0 .../js/ckeditor/plugins/font/lang/en-ca.js | 0 .../js/ckeditor/plugins/font/lang/en-gb.js | 0 .../js/ckeditor/plugins/font/lang/en.js | 0 .../js/ckeditor/plugins/font/lang/eo.js | 0 .../js/ckeditor/plugins/font/lang/es.js | 0 .../js/ckeditor/plugins/font/lang/et.js | 0 .../js/ckeditor/plugins/font/lang/eu.js | 0 .../js/ckeditor/plugins/font/lang/fa.js | 0 .../js/ckeditor/plugins/font/lang/fi.js | 0 .../js/ckeditor/plugins/font/lang/fo.js | 0 .../js/ckeditor/plugins/font/lang/fr-ca.js | 0 .../js/ckeditor/plugins/font/lang/fr.js | 0 .../js/ckeditor/plugins/font/lang/gl.js | 0 .../js/ckeditor/plugins/font/lang/gu.js | 0 .../js/ckeditor/plugins/font/lang/he.js | 0 .../js/ckeditor/plugins/font/lang/hi.js | 0 .../js/ckeditor/plugins/font/lang/hr.js | 0 .../js/ckeditor/plugins/font/lang/hu.js | 0 .../js/ckeditor/plugins/font/lang/is.js | 0 .../js/ckeditor/plugins/font/lang/it.js | 0 .../js/ckeditor/plugins/font/lang/ja.js | 0 .../js/ckeditor/plugins/font/lang/ka.js | 0 .../js/ckeditor/plugins/font/lang/km.js | 0 .../js/ckeditor/plugins/font/lang/ko.js | 0 .../js/ckeditor/plugins/font/lang/ku.js | 0 .../js/ckeditor/plugins/font/lang/lt.js | 0 .../js/ckeditor/plugins/font/lang/lv.js | 0 .../js/ckeditor/plugins/font/lang/mk.js | 0 .../js/ckeditor/plugins/font/lang/mn.js | 0 .../js/ckeditor/plugins/font/lang/ms.js | 0 .../js/ckeditor/plugins/font/lang/nb.js | 0 .../js/ckeditor/plugins/font/lang/nl.js | 0 .../js/ckeditor/plugins/font/lang/no.js | 0 .../js/ckeditor/plugins/font/lang/pl.js | 0 .../js/ckeditor/plugins/font/lang/pt-br.js | 0 .../js/ckeditor/plugins/font/lang/pt.js | 0 .../js/ckeditor/plugins/font/lang/ro.js | 0 .../js/ckeditor/plugins/font/lang/ru.js | 0 .../js/ckeditor/plugins/font/lang/sk.js | 0 .../js/ckeditor/plugins/font/lang/sl.js | 0 .../js/ckeditor/plugins/font/lang/sr-latn.js | 0 .../js/ckeditor/plugins/font/lang/sr.js | 0 .../js/ckeditor/plugins/font/lang/sv.js | 0 .../js/ckeditor/plugins/font/lang/th.js | 0 .../js/ckeditor/plugins/font/lang/tr.js | 0 .../js/ckeditor/plugins/font/lang/ug.js | 0 .../js/ckeditor/plugins/font/lang/uk.js | 0 .../js/ckeditor/plugins/font/lang/vi.js | 0 .../js/ckeditor/plugins/font/lang/zh-cn.js | 0 .../js/ckeditor/plugins/font/lang/zh.js | 0 .../js/ckeditor/plugins/font/plugin.js | 0 .../default/js/ckeditor/plugins/icons.png | Bin .../ckeditor/plugins/image/images/noimage.png | Bin .../plugins/justify/icons/justifyblock.png | Bin .../plugins/justify/icons/justifycenter.png | Bin .../plugins/justify/icons/justifyleft.png | Bin .../plugins/justify/icons/justifyright.png | Bin .../js/ckeditor/plugins/justify/lang/af.js | 0 .../js/ckeditor/plugins/justify/lang/ar.js | 0 .../js/ckeditor/plugins/justify/lang/bg.js | 0 .../js/ckeditor/plugins/justify/lang/bn.js | 0 .../js/ckeditor/plugins/justify/lang/bs.js | 0 .../js/ckeditor/plugins/justify/lang/ca.js | 0 .../js/ckeditor/plugins/justify/lang/cs.js | 0 .../js/ckeditor/plugins/justify/lang/cy.js | 0 .../js/ckeditor/plugins/justify/lang/da.js | 0 .../js/ckeditor/plugins/justify/lang/de.js | 0 .../js/ckeditor/plugins/justify/lang/el.js | 0 .../js/ckeditor/plugins/justify/lang/en-au.js | 0 .../js/ckeditor/plugins/justify/lang/en-ca.js | 0 .../js/ckeditor/plugins/justify/lang/en-gb.js | 0 .../js/ckeditor/plugins/justify/lang/en.js | 0 .../js/ckeditor/plugins/justify/lang/eo.js | 0 .../js/ckeditor/plugins/justify/lang/es.js | 0 .../js/ckeditor/plugins/justify/lang/et.js | 0 .../js/ckeditor/plugins/justify/lang/eu.js | 0 .../js/ckeditor/plugins/justify/lang/fa.js | 0 .../js/ckeditor/plugins/justify/lang/fi.js | 0 .../js/ckeditor/plugins/justify/lang/fo.js | 0 .../js/ckeditor/plugins/justify/lang/fr-ca.js | 0 .../js/ckeditor/plugins/justify/lang/fr.js | 0 .../js/ckeditor/plugins/justify/lang/gl.js | 0 .../js/ckeditor/plugins/justify/lang/gu.js | 0 .../js/ckeditor/plugins/justify/lang/he.js | 0 .../js/ckeditor/plugins/justify/lang/hi.js | 0 .../js/ckeditor/plugins/justify/lang/hr.js | 0 .../js/ckeditor/plugins/justify/lang/hu.js | 0 .../js/ckeditor/plugins/justify/lang/is.js | 0 .../js/ckeditor/plugins/justify/lang/it.js | 0 .../js/ckeditor/plugins/justify/lang/ja.js | 0 .../js/ckeditor/plugins/justify/lang/ka.js | 0 .../js/ckeditor/plugins/justify/lang/km.js | 0 .../js/ckeditor/plugins/justify/lang/ko.js | 0 .../js/ckeditor/plugins/justify/lang/ku.js | 0 .../js/ckeditor/plugins/justify/lang/lt.js | 0 .../js/ckeditor/plugins/justify/lang/lv.js | 0 .../js/ckeditor/plugins/justify/lang/mk.js | 0 .../js/ckeditor/plugins/justify/lang/mn.js | 0 .../js/ckeditor/plugins/justify/lang/ms.js | 0 .../js/ckeditor/plugins/justify/lang/nb.js | 0 .../js/ckeditor/plugins/justify/lang/nl.js | 0 .../js/ckeditor/plugins/justify/lang/no.js | 0 .../js/ckeditor/plugins/justify/lang/pl.js | 0 .../js/ckeditor/plugins/justify/lang/pt-br.js | 0 .../js/ckeditor/plugins/justify/lang/pt.js | 0 .../js/ckeditor/plugins/justify/lang/ro.js | 0 .../js/ckeditor/plugins/justify/lang/ru.js | 0 .../js/ckeditor/plugins/justify/lang/sk.js | 0 .../js/ckeditor/plugins/justify/lang/sl.js | 0 .../ckeditor/plugins/justify/lang/sr-latn.js | 0 .../js/ckeditor/plugins/justify/lang/sr.js | 0 .../js/ckeditor/plugins/justify/lang/sv.js | 0 .../js/ckeditor/plugins/justify/lang/th.js | 0 .../js/ckeditor/plugins/justify/lang/tr.js | 0 .../js/ckeditor/plugins/justify/lang/ug.js | 0 .../js/ckeditor/plugins/justify/lang/uk.js | 0 .../js/ckeditor/plugins/justify/lang/vi.js | 0 .../js/ckeditor/plugins/justify/lang/zh-cn.js | 0 .../js/ckeditor/plugins/justify/lang/zh.js | 0 .../js/ckeditor/plugins/justify/plugin.js | 0 .../ckeditor/plugins/link/images/anchor.png | Bin .../plugins/magicline/images/icon.png | Bin .../js/ckeditor/plugins/menubutton/plugin.js | 0 .../js/ckeditor/plugins/panelbutton/plugin.js | 0 .../js/ckeditor/plugins/scayt/LICENSE.md | 0 .../js/ckeditor/plugins/scayt/README.md | 0 .../js/ckeditor/plugins/scayt/icons/scayt.png | Bin .../js/ckeditor/plugins/scayt/lang/af.js | 0 .../js/ckeditor/plugins/scayt/lang/ar.js | 0 .../js/ckeditor/plugins/scayt/lang/bg.js | 0 .../js/ckeditor/plugins/scayt/lang/bn.js | 0 .../js/ckeditor/plugins/scayt/lang/bs.js | 0 .../js/ckeditor/plugins/scayt/lang/ca.js | 0 .../js/ckeditor/plugins/scayt/lang/cs.js | 0 .../js/ckeditor/plugins/scayt/lang/cy.js | 0 .../js/ckeditor/plugins/scayt/lang/da.js | 0 .../js/ckeditor/plugins/scayt/lang/de.js | 0 .../js/ckeditor/plugins/scayt/lang/el.js | 0 .../js/ckeditor/plugins/scayt/lang/en-au.js | 0 .../js/ckeditor/plugins/scayt/lang/en-ca.js | 0 .../js/ckeditor/plugins/scayt/lang/en-gb.js | 0 .../js/ckeditor/plugins/scayt/lang/en.js | 0 .../js/ckeditor/plugins/scayt/lang/eo.js | 0 .../js/ckeditor/plugins/scayt/lang/es.js | 0 .../js/ckeditor/plugins/scayt/lang/et.js | 0 .../js/ckeditor/plugins/scayt/lang/eu.js | 0 .../js/ckeditor/plugins/scayt/lang/fa.js | 0 .../js/ckeditor/plugins/scayt/lang/fi.js | 0 .../js/ckeditor/plugins/scayt/lang/fo.js | 0 .../js/ckeditor/plugins/scayt/lang/fr-ca.js | 0 .../js/ckeditor/plugins/scayt/lang/fr.js | 0 .../js/ckeditor/plugins/scayt/lang/gl.js | 0 .../js/ckeditor/plugins/scayt/lang/gu.js | 0 .../js/ckeditor/plugins/scayt/lang/he.js | 0 .../js/ckeditor/plugins/scayt/lang/hi.js | 0 .../js/ckeditor/plugins/scayt/lang/hr.js | 0 .../js/ckeditor/plugins/scayt/lang/hu.js | 0 .../js/ckeditor/plugins/scayt/lang/is.js | 0 .../js/ckeditor/plugins/scayt/lang/it.js | 0 .../js/ckeditor/plugins/scayt/lang/ja.js | 0 .../js/ckeditor/plugins/scayt/lang/ka.js | 0 .../js/ckeditor/plugins/scayt/lang/km.js | 0 .../js/ckeditor/plugins/scayt/lang/ko.js | 0 .../js/ckeditor/plugins/scayt/lang/ku.js | 0 .../js/ckeditor/plugins/scayt/lang/lt.js | 0 .../js/ckeditor/plugins/scayt/lang/lv.js | 0 .../js/ckeditor/plugins/scayt/lang/mk.js | 0 .../js/ckeditor/plugins/scayt/lang/mn.js | 0 .../js/ckeditor/plugins/scayt/lang/ms.js | 0 .../js/ckeditor/plugins/scayt/lang/nb.js | 0 .../js/ckeditor/plugins/scayt/lang/nl.js | 0 .../js/ckeditor/plugins/scayt/lang/no.js | 0 .../js/ckeditor/plugins/scayt/lang/pl.js | 0 .../js/ckeditor/plugins/scayt/lang/pt-br.js | 0 .../js/ckeditor/plugins/scayt/lang/pt.js | 0 .../js/ckeditor/plugins/scayt/lang/ro.js | 0 .../js/ckeditor/plugins/scayt/lang/ru.js | 0 .../js/ckeditor/plugins/scayt/lang/sk.js | 0 .../js/ckeditor/plugins/scayt/lang/sl.js | 0 .../js/ckeditor/plugins/scayt/lang/sr-latn.js | 0 .../js/ckeditor/plugins/scayt/lang/sr.js | 0 .../js/ckeditor/plugins/scayt/lang/sv.js | 0 .../js/ckeditor/plugins/scayt/lang/th.js | 0 .../js/ckeditor/plugins/scayt/lang/tr.js | 0 .../js/ckeditor/plugins/scayt/lang/ug.js | 0 .../js/ckeditor/plugins/scayt/lang/uk.js | 0 .../js/ckeditor/plugins/scayt/lang/vi.js | 0 .../js/ckeditor/plugins/scayt/lang/zh-cn.js | 0 .../js/ckeditor/plugins/scayt/lang/zh.js | 0 .../js/ckeditor/plugins/scayt/plugin.js | 0 .../dialogs/lang/_translationstatus.txt | 0 .../plugins/specialchar/dialogs/lang/ca.js | 0 .../plugins/specialchar/dialogs/lang/cs.js | 0 .../plugins/specialchar/dialogs/lang/cy.js | 0 .../plugins/specialchar/dialogs/lang/de.js | 0 .../plugins/specialchar/dialogs/lang/el.js | 0 .../plugins/specialchar/dialogs/lang/en.js | 0 .../plugins/specialchar/dialogs/lang/eo.js | 0 .../plugins/specialchar/dialogs/lang/et.js | 0 .../plugins/specialchar/dialogs/lang/fa.js | 0 .../plugins/specialchar/dialogs/lang/fi.js | 0 .../plugins/specialchar/dialogs/lang/fr.js | 0 .../plugins/specialchar/dialogs/lang/he.js | 0 .../plugins/specialchar/dialogs/lang/hr.js | 0 .../plugins/specialchar/dialogs/lang/it.js | 0 .../plugins/specialchar/dialogs/lang/ku.js | 0 .../plugins/specialchar/dialogs/lang/lv.js | 0 .../plugins/specialchar/dialogs/lang/nb.js | 0 .../plugins/specialchar/dialogs/lang/nl.js | 0 .../plugins/specialchar/dialogs/lang/no.js | 0 .../plugins/specialchar/dialogs/lang/pt-br.js | 0 .../plugins/specialchar/dialogs/lang/sk.js | 0 .../plugins/specialchar/dialogs/lang/tr.js | 0 .../plugins/specialchar/dialogs/lang/ug.js | 0 .../plugins/specialchar/dialogs/lang/zh-cn.js | 0 .../default/js/ckeditor/samples/ajax.html | 0 branding/default/js/ckeditor/samples/api.html | 0 .../default/js/ckeditor/samples/appendto.html | 0 .../samples/assets/inlineall/logo.png | Bin .../assets/outputxhtml/outputxhtml.css | 0 .../js/ckeditor/samples/assets/posteddata.php | 0 .../js/ckeditor/samples/assets/sample.css | 0 .../js/ckeditor/samples/assets/sample.jpg | Bin .../samples/assets/uilanguages/languages.js | 0 .../js/ckeditor/samples/divreplace.html | 0 .../default/js/ckeditor/samples/index.html | 0 .../js/ckeditor/samples/inlineall.html | 0 .../js/ckeditor/samples/inlinebycode.html | 0 .../plugins/dialog/assets/my_dialog.js | 0 .../samples/plugins/dialog/dialog.html | 0 .../samples/plugins/enterkey/enterkey.html | 0 .../assets/outputforflash/outputforflash.fla | Bin .../assets/outputforflash/outputforflash.swf | Bin .../assets/outputforflash/swfobject.js | 0 .../plugins/htmlwriter/outputforflash.html | 0 .../plugins/htmlwriter/outputhtml.html | 0 .../samples/plugins/magicline/magicline.html | 0 .../samples/plugins/toolbar/toolbar.html | 0 .../samples/plugins/wysiwygarea/fullpage.html | 0 .../default/js/ckeditor/samples/readonly.html | 0 .../js/ckeditor/samples/replacebyclass.html | 0 .../js/ckeditor/samples/replacebycode.html | 0 .../default/js/ckeditor/samples/sample.css | 0 .../default/js/ckeditor/samples/sample.js | 0 .../js/ckeditor/samples/sample_posteddata.php | 0 .../default/js/ckeditor/samples/tabindex.html | 0 .../default/js/ckeditor/samples/uicolor.html | 0 .../js/ckeditor/samples/uilanguages.html | 0 .../js/ckeditor/samples/xhtmlstyle.html | 0 .../js/ckeditor/skins/moono/dialog.css | 0 .../js/ckeditor/skins/moono/dialog_ie.css | 0 .../js/ckeditor/skins/moono/dialog_ie7.css | 0 .../js/ckeditor/skins/moono/dialog_ie8.css | 0 .../js/ckeditor/skins/moono/dialog_opera.css | 0 .../js/ckeditor/skins/moono/editor.css | 0 .../js/ckeditor/skins/moono/editor_gecko.css | 0 .../js/ckeditor/skins/moono/editor_ie.css | 0 .../js/ckeditor/skins/moono/editor_ie7.css | 0 .../js/ckeditor/skins/moono/editor_ie8.css | 0 .../default/js/ckeditor/skins/moono/icons.png | Bin .../js/ckeditor/skins/moono/images/arrow.png | Bin .../js/ckeditor/skins/moono/images/close.png | Bin .../js/ckeditor/skins/moono/images/mini.png | Bin .../default/js/ckeditor/skins/moono/readme.md | 0 branding/default/js/ckeditor/styles.js | 0 branding/default/js/dashboard.js | 0 branding/default/js/data.user_fields.js | 0 branding/default/js/date.js | 0 branding/default/js/datePicker.js | 0 branding/default/js/form.address.js | 0 branding/default/js/form.blog.js | 0 branding/default/js/form.coupon.js | 0 branding/default/js/form.email.js | 0 branding/default/js/form.field.js | 0 branding/default/js/form.js | 0 branding/default/js/form.plan.js | 0 branding/default/js/form.rss_feed.js | 0 branding/default/js/form.send_email.js | 0 branding/default/js/form.transaction.js | 0 branding/default/js/image_gallery.js | 0 branding/default/js/image_gallery_form.js | 0 branding/default/js/jquery-1.4.2.js | 0 branding/default/js/jquery.quicksearch.js | 0 .../default/js/jquery.simplemodal.1.4.min.js | 0 branding/default/js/jquery.sparkline.js | 0 branding/default/js/menu_manager.js | 0 branding/default/js/product.js | 0 branding/default/js/product_option.js | 0 branding/default/js/recurring.js | 0 branding/default/js/report.invoice.js | 0 branding/default/js/report.products.js | 0 branding/default/js/settings.js | 0 branding/default/js/sortable.js | 0 branding/default/js/theme_editor.js | 0 branding/default/js/tiptip.min.js | 0 branding/default/js/universal.js | 0 codeigniter_license.txt | 0 hero-os-license.txt | 0 system/core/Common.php | 6 +- system/core/Security.php | 2 +- .../database/drivers/cubrid/cubrid_driver.php | 0 .../database/drivers/cubrid/cubrid_forge.php | 0 .../database/drivers/cubrid/cubrid_result.php | 0 .../drivers/cubrid/cubrid_utility.php | 0 system/database/drivers/cubrid/index.html | 0 system/database/drivers/pdo/index.html | 0 system/database/drivers/pdo/pdo_driver.php | 0 system/database/drivers/pdo/pdo_forge.php | 0 system/database/drivers/pdo/pdo_result.php | 0 system/database/drivers/pdo/pdo_utility.php | 0 system/language/english/migration_lang.php | 0 system/libraries/Migration.php | 0 system/libraries/Xmlrpc.php | 49 +++++----- system/libraries/Xmlrpcs.php | 6 +- themes/_common/jquery-1.4.2.min.js | 0 themes/_common/preview.jpg | Bin themes/_common/shadowbox/LICENSE | 0 themes/_common/shadowbox/README | 0 themes/_common/shadowbox/close.png | Bin themes/_common/shadowbox/expressInstall.swf | Bin themes/_common/shadowbox/loading.gif | Bin themes/_common/shadowbox/next.png | Bin themes/_common/shadowbox/pause.png | Bin themes/_common/shadowbox/play.png | Bin themes/_common/shadowbox/player.swf | Bin themes/_common/shadowbox/previous.png | Bin themes/_common/shadowbox/shadowbox.css | 0 themes/_common/shadowbox/shadowbox.js | 0 themes/_plugins/block.module_installed.php | 0 themes/_plugins/block.restricted.php | 0 themes/_plugins/function.money_format.php | 0 themes/_plugins/function.paginate.php | 0 themes/_plugins/function.setting.php | 0 themes/_plugins/function.shorten.php | 0 themes/_plugins/function.theme_url.php | 0 themes/_plugins/function.thumbnail.php | 0 themes/_plugins/function.url.php | 0 themes/_plugins/function.xss_clean.php | 0 .../_plugins/modifier.parse_as_template.php | 0 .../cancel_subscription.thtml | 0 .../account_templates/change_password.thtml | 0 .../account_templates/forgot_password.thtml | 0 .../forgot_password_complete.thtml | 0 themes/cubed/account_templates/home.thtml | 0 themes/cubed/account_templates/invoice.thtml | 0 themes/cubed/account_templates/invoices.thtml | 0 themes/cubed/account_templates/login.thtml | 0 themes/cubed/account_templates/profile.thtml | 0 .../account_templates/registration.thtml | 0 themes/cubed/archives.thtml | 0 themes/cubed/blog.thtml | 0 themes/cubed/checkout_templates/account.thtml | 0 .../checkout_templates/billing_shipping.thtml | 0 .../checkout_templates/checkout_layout.thtml | 0 .../cubed/checkout_templates/complete.thtml | 0 .../checkout_templates/free_confirm.thtml | 0 themes/cubed/checkout_templates/payment.thtml | 0 .../cubed/checkout_templates/register.thtml | 0 .../checkout_templates/shipping_method.thtml | 0 themes/cubed/content.thtml | 0 themes/cubed/css/universal.css | 0 themes/cubed/form.thtml | 0 themes/cubed/frontpage.thtml | 0 themes/cubed/images/banner.jpg | Bin themes/cubed/images/button.gif | Bin themes/cubed/images/footer_corner.gif | Bin themes/cubed/images/logo.jpg | Bin themes/cubed/images/navbar_back.gif | Bin themes/cubed/images/navbar_left.gif | Bin themes/cubed/images/placeholders/apples.jpg | Bin .../cubed/images/placeholders/blueberries.jpg | Bin themes/cubed/images/placeholders/cherries.jpg | Bin themes/cubed/images/placeholders/oranges.jpg | Bin themes/cubed/images/placeholders/pears.jpg | Bin .../images/placeholders/strawberries.jpg | Bin themes/cubed/images/sideleft.gif | Bin themes/cubed/install.php | 0 themes/cubed/js/checkout.js | 0 themes/cubed/js/form.js | 0 themes/cubed/js/universal.js | 0 themes/cubed/layout.thtml | 0 themes/cubed/members_content.thtml | 0 themes/cubed/news_post.thtml | 0 themes/cubed/paywall.thtml | 0 themes/cubed/preview.jpg | Bin themes/cubed/rss_feed.txml | 0 themes/cubed/search.thtml | 0 themes/cubed/static_page.thtml | 0 themes/cubed/store_cart.thtml | 0 themes/cubed/store_listing.thtml | 0 themes/cubed/store_product.thtml | 0 themes/cubed/subscriptions.thtml | 0 .../cancel_subscription.thtml | 0 .../account_templates/change_password.thtml | 0 .../account_templates/forgot_password.thtml | 0 .../forgot_password_complete.thtml | 0 themes/electric/account_templates/home.thtml | 0 .../electric/account_templates/invoice.thtml | 0 .../electric/account_templates/invoices.thtml | 0 themes/electric/account_templates/login.thtml | 0 .../electric/account_templates/profile.thtml | 0 .../account_templates/registration.thtml | 0 themes/electric/archives.thtml | 0 themes/electric/blog_post.thtml | 0 .../electric/checkout_templates/account.thtml | 0 .../checkout_templates/billing_shipping.thtml | 0 .../checkout_templates/checkout_layout.thtml | 0 .../checkout_templates/complete.thtml | 0 .../checkout_templates/free_confirm.thtml | 0 .../electric/checkout_templates/payment.thtml | 0 .../checkout_templates/register.thtml | 0 .../checkout_templates/shipping_method.thtml | 0 themes/electric/content.thtml | 0 themes/electric/css/universal.css | 0 themes/electric/event.thtml | 0 themes/electric/events.thtml | 0 themes/electric/form.thtml | 0 themes/electric/frontpage.thtml | 0 themes/electric/images/body_back.jpg | Bin themes/electric/images/button.gif | Bin themes/electric/images/content_back.gif | Bin themes/electric/images/header_back.jpg | Bin themes/electric/images/logo.png | Bin themes/electric/images/nav_separator.png | Bin themes/electric/images/navigation_back.jpg | Bin .../electric/images/placeholders/apples.jpg | Bin .../images/placeholders/blueberries.jpg | Bin .../images/placeholders/blueberries2.jpg | Bin .../electric/images/placeholders/cleaning.png | Bin .../electric/images/placeholders/download.jpg | Bin themes/electric/images/placeholders/hero.jpg | Bin themes/electric/images/placeholders/house.jpg | Bin .../electric/images/placeholders/newyears.jpg | Bin .../electric/images/placeholders/oranges.jpg | Bin .../images/placeholders/strawberries.jpg | Bin themes/electric/images/post.gif | Bin themes/electric/images/sidebar_body.gif | Bin themes/electric/images/sidebar_foot.gif | Bin themes/electric/images/sidebar_head.gif | Bin themes/electric/images/wrapper_back.gif | Bin themes/electric/install.php | 0 themes/electric/js/checkout.js | 0 themes/electric/js/form.js | 0 themes/electric/js/universal.js | 0 themes/electric/layout.thtml | 0 themes/electric/paywall.thtml | 0 themes/electric/preview.jpg | Bin themes/electric/rss_feed.txml | 0 themes/electric/search.thtml | 0 themes/electric/store_cart.thtml | 0 themes/electric/store_listing.thtml | 0 themes/electric/store_product.thtml | 0 themes/electric/subscriptions.thtml | 0 .../cancel_subscription.thtml | 0 .../account_templates/change_password.thtml | 0 .../account_templates/forgot_password.thtml | 0 .../forgot_password_complete.thtml | 0 .../night_jungle/account_templates/home.thtml | 0 .../account_templates/invoice.thtml | 0 .../account_templates/invoices.thtml | 0 .../account_templates/login.thtml | 0 .../account_templates/profile.thtml | 0 .../account_templates/registration.thtml | 0 themes/night_jungle/archives.thtml | 0 themes/night_jungle/blog.thtml | 0 .../checkout_templates/account.thtml | 0 .../checkout_templates/billing_shipping.thtml | 0 .../checkout_templates/checkout_layout.thtml | 0 .../checkout_templates/complete.thtml | 0 .../checkout_templates/free_confirm.thtml | 0 .../checkout_templates/payment.thtml | 0 .../checkout_templates/register.thtml | 0 .../checkout_templates/shipping_method.thtml | 0 themes/night_jungle/content.thtml | 0 themes/night_jungle/css/universal.css | 0 themes/night_jungle/form.thtml | 0 themes/night_jungle/frontpage.thtml | 0 themes/night_jungle/images/back.jpg | Bin themes/night_jungle/images/button.gif | Bin themes/night_jungle/images/logo.png | Bin .../images/placeholders/apples.jpg | Bin .../images/placeholders/blueberries.jpg | Bin .../images/placeholders/cherries.jpg | Bin .../images/placeholders/oranges.jpg | Bin .../images/placeholders/pears.jpg | Bin .../images/placeholders/strawberries.jpg | Bin themes/night_jungle/images/post.png | Bin themes/night_jungle/images/tiger.jpg | Bin themes/night_jungle/images/translucent.png | Bin themes/night_jungle/install.php | 0 themes/night_jungle/js/checkout.js | 0 themes/night_jungle/js/form.js | 0 themes/night_jungle/js/universal.js | 0 themes/night_jungle/layout.thtml | 0 themes/night_jungle/members_content.thtml | 0 themes/night_jungle/paywall.thtml | 0 themes/night_jungle/preview.jpg | Bin themes/night_jungle/rss_feed.txml | 0 themes/night_jungle/search.thtml | 0 themes/night_jungle/static_page.thtml | 0 themes/night_jungle/store_cart.thtml | 0 themes/night_jungle/store_listing.thtml | 0 themes/night_jungle/store_product.thtml | 0 themes/night_jungle/subscriptions.thtml | 0 .../cancel_subscription.thtml | 0 .../account_templates/change_password.thtml | 0 .../account_templates/forgot_password.thtml | 0 .../forgot_password_complete.thtml | 0 themes/orchard/account_templates/home.thtml | 0 .../orchard/account_templates/invoice.thtml | 0 .../orchard/account_templates/invoices.thtml | 0 themes/orchard/account_templates/login.thtml | 0 .../orchard/account_templates/profile.thtml | 0 .../account_templates/registration.thtml | 0 themes/orchard/archives.thtml | 0 themes/orchard/blog.thtml | 0 .../orchard/checkout_templates/account.thtml | 0 .../checkout_templates/billing_shipping.thtml | 0 .../checkout_templates/checkout_layout.thtml | 0 .../orchard/checkout_templates/complete.thtml | 0 .../checkout_templates/free_confirm.thtml | 0 .../orchard/checkout_templates/payment.thtml | 0 .../orchard/checkout_templates/register.thtml | 0 .../checkout_templates/shipping_method.thtml | 0 themes/orchard/content.thtml | 0 themes/orchard/css/universal.css | 0 themes/orchard/form.thtml | 0 themes/orchard/frontpage.thtml | 0 themes/orchard/images/banner.jpg | Bin themes/orchard/images/button.gif | Bin themes/orchard/images/logo.jpg | Bin themes/orchard/images/placeholders/apples.jpg | Bin .../images/placeholders/blueberries.jpg | Bin .../orchard/images/placeholders/cherries.jpg | Bin .../orchard/images/placeholders/oranges.jpg | Bin themes/orchard/images/placeholders/pears.jpg | Bin .../images/placeholders/strawberries.jpg | Bin themes/orchard/install.php | 0 themes/orchard/js/checkout.js | 0 themes/orchard/js/form.js | 0 themes/orchard/js/universal.js | 0 themes/orchard/layout.thtml | 0 themes/orchard/news_post.thtml | 0 themes/orchard/paywall.thtml | 0 themes/orchard/preview.jpg | Bin themes/orchard/rss_feed.txml | 0 themes/orchard/search.thtml | 0 themes/orchard/static_page.thtml | 0 themes/orchard/store_cart.thtml | 0 themes/orchard/store_listing.thtml | 0 themes/orchard/store_product.thtml | 0 themes/orchard/subscriptions.thtml | 0 writeable/email_templates/.htaccess | 3 + writeable/email_templates/email_layout.thtml | 18 ++++ writeable/email_templates/index.html | 0 .../member_forgot_password_2_body.thtml | 13 +++ .../member_forgot_password_2_subject.thtml | 1 + .../member_register_1_body.thtml | 13 +++ .../member_register_1_subject.thtml | 1 + .../member_validate_email_3_body.thtml | 12 +++ .../member_validate_email_3_subject.thtml | 1 + 2035 files changed, 413 insertions(+), 241 deletions(-) mode change 100644 => 100755 .gitignore mode change 100644 => 100755 .htaccess mode change 100644 => 100755 1.htaccess mode change 100644 => 100755 README.md mode change 100644 => 100755 app/config/autoload.php mode change 100644 => 100755 app/config/config.example.php mode change 100644 => 100755 app/config/constants.php mode change 100644 => 100755 app/config/core_modules.php mode change 100644 => 100755 app/config/database.format.php mode change 100644 => 100755 app/config/default_routes.php mode change 100644 => 100755 app/config/doctypes.php mode change 100644 => 100755 app/config/email.php mode change 100644 => 100755 app/config/foreign_chars.php mode change 100644 => 100755 app/config/hooks.php mode change 100644 => 100755 app/config/index.html mode change 100644 => 100755 app/config/mimes.php mode change 100644 => 100755 app/config/pagination.php mode change 100644 => 100755 app/config/profiler.php mode change 100644 => 100755 app/config/routes.php mode change 100644 => 100755 app/config/smileys.php mode change 100644 => 100755 app/config/user_agents.php mode change 100644 => 100755 app/config/version.php mode change 100644 => 100755 app/controllers/admincp/dashboard.php mode change 100644 => 100755 app/controllers/admincp/dataset.php mode change 100644 => 100755 app/controllers/admincp/login.php mode change 100644 => 100755 app/controllers/cron.php mode change 100644 => 100755 app/controllers/error.php mode change 100644 => 100755 app/controllers/frontpage.php mode change 100644 => 100755 app/controllers/index.html mode change 100644 => 100755 app/controllers/install.php mode change 100644 => 100755 app/core/MY_Controller.php mode change 100644 => 100755 app/core/MY_Input.php mode change 100644 => 100755 app/core/MY_Loader.php mode change 100644 => 100755 app/core/MY_Router.php mode change 100644 => 100755 app/errors/error_404.php mode change 100644 => 100755 app/errors/error_db.php mode change 100644 => 100755 app/errors/error_general.php mode change 100644 => 100755 app/errors/error_php.php mode change 100644 => 100755 app/errors/index.html mode change 100644 => 100755 app/helpers/MY_url_helper.php mode change 100644 => 100755 app/helpers/admincp/admin_link_helper.php mode change 100644 => 100755 app/helpers/admincp/dataset_link_helper.php mode change 100644 => 100755 app/helpers/admincp/get_notices_helper.php mode change 100644 => 100755 app/helpers/admincp/url_string_helper.php mode change 100644 => 100755 app/helpers/array_to_json_helper.php mode change 100644 => 100755 app/helpers/branding/branded_include_helper.php mode change 100644 => 100755 app/helpers/branding/branded_view_helper.php mode change 100644 => 100755 app/helpers/clean_string_helper.php mode change 100644 => 100755 app/helpers/cron_log_helper.php mode change 100644 => 100755 app/helpers/file_extension_helper.php mode change 100644 => 100755 app/helpers/filter_directory_helper.php mode change 100644 => 100755 app/helpers/format_size_helper.php mode change 100644 => 100755 app/helpers/format_street_address_helper.php mode change 100644 => 100755 app/helpers/get_available_image_library_helper.php mode change 100644 => 100755 app/helpers/image_thumb_helper.php mode change 100644 => 100755 app/helpers/index.html mode change 100644 => 100755 app/helpers/install_redirect_helper.php mode change 100644 => 100755 app/helpers/local_time_helper.php mode change 100644 => 100755 app/helpers/module_installed_helper.php mode change 100644 => 100755 app/helpers/money_format_helper.php mode change 100644 => 100755 app/helpers/query_value_helper.php mode change 100644 => 100755 app/helpers/setting_helper.php mode change 100644 => 100755 app/helpers/shorten_helper.php mode change 100644 => 100755 app/helpers/ssl_helper.php mode change 100644 => 100755 app/helpers/states_helper.php mode change 100644 => 100755 app/helpers/strip_whitespace_helper.php mode change 100644 => 100755 app/helpers/template_files_helper.php mode change 100644 => 100755 app/helpers/time_since_helper.php mode change 100644 => 100755 app/helpers/unique_email_helper.php mode change 100644 => 100755 app/helpers/unique_username_helper.php mode change 100644 => 100755 app/helpers/valid_domain_helper.php mode change 100644 => 100755 app/helpers/verify_password_helper.php mode change 100644 => 100755 app/helpers/xml_value_prep_helper.php mode change 100644 => 100755 app/hooks/index.html mode change 100644 => 100755 app/index.html mode change 100644 => 100755 app/language/english/control_panel_lang.php mode change 100644 => 100755 app/language/english/index.html mode change 100644 => 100755 app/libraries/MY_Cart.php mode change 100644 => 100755 app/libraries/MY_Email.php mode change 100644 => 100755 app/libraries/MY_Upload.php mode change 100644 => 100755 app/libraries/admin_form.php mode change 100644 => 100755 app/libraries/admin_navigation.php mode change 100644 => 100755 app/libraries/app_hooks.php mode change 100644 => 100755 app/libraries/array_to_csv.php mode change 100644 => 100755 app/libraries/array_to_xml.php mode change 100644 => 100755 app/libraries/asciihex.php mode change 100644 => 100755 app/libraries/auto_updater.php mode change 100644 => 100755 app/libraries/controllers/Admincp_Controller.php mode change 100644 => 100755 app/libraries/controllers/Front_Controller.php mode change 100644 => 100755 app/libraries/dataset.php mode change 100644 => 100755 app/libraries/field_validation.php mode change 100644 => 100755 app/libraries/head_assets.php mode change 100644 => 100755 app/libraries/head_compile.php mode change 100644 => 100755 app/libraries/image_gallery_form.php mode change 100644 => 100755 app/libraries/index.html mode change 100644 => 100755 app/libraries/inflect.php mode change 100644 => 100755 app/libraries/jsmin.php mode change 100644 => 100755 app/libraries/key.php mode change 100644 => 100755 app/libraries/module.php mode change 100644 => 100755 app/libraries/notices.php mode change 100644 => 100755 app/libraries/response.php mode change 100644 => 100755 app/libraries/smarty.php mode change 100644 => 100755 app/libraries/smarty/Smarty.class.php mode change 100644 => 100755 app/libraries/smarty/plugins/block.php.php mode change 100644 => 100755 app/libraries/smarty/plugins/block.textformat.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.counter.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.cycle.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.fetch.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.html_checkboxes.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.html_image.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.html_options.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.html_radios.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.html_select_date.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.html_select_time.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.html_table.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.mailto.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.math.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.popup.php mode change 100644 => 100755 app/libraries/smarty/plugins/function.popup_init.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.capitalize.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.date_format.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.debug_print_var.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.escape.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.regex_replace.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.replace.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.spacify.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifier.truncate.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.cat.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.count_characters.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.count_paragraphs.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.count_sentences.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.count_words.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.default.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.indent.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.lower.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.noprint.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.string_format.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.strip.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.strip_tags.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.upper.php mode change 100644 => 100755 app/libraries/smarty/plugins/modifiercompiler.wordwrap.php mode change 100644 => 100755 app/libraries/smarty/plugins/outputfilter.trimwhitespace.php mode change 100644 => 100755 app/libraries/smarty/plugins/shared.escape_special_chars.php mode change 100644 => 100755 app/libraries/smarty/plugins/shared.make_timestamp.php mode change 100644 => 100755 app/libraries/smarty/plugins/variablefilter.htmlspecialchars.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_cacheresource_file.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_append.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_assign.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_block.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_break.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_call.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_capture.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_config_load.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_continue.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_debug.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_eval.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_extends.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_for.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_foreach.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_function.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_if.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_include.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_include_php.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_insert.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_ldelim.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_nocache.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_modifier.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_function.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_print_expression.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_block.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_function.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_private_special_variable.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_rdelim.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_section.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compile_while.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_compilebase.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_config.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_config_file_compiler.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_configfilelexer.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_configfileparser.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_data.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_debug.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_filter.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_filter_handler.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_function_call_handler.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_nocache_insert.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_parsetree.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_register.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_resource_eval.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_resource_extends.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_resource_file.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_resource_php.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_resource_registered.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_resource_stream.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_resource_string.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_template.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_templatecompilerbase.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_templatelexer.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_templateparser.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_utility.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_wrapper.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_internal_write_file.php mode change 100644 => 100755 app/libraries/smarty/sysplugins/smarty_security.php mode change 100644 => 100755 app/libraries/stats.php mode change 100644 => 100755 app/models/admincp/notices.php mode change 100644 => 100755 app/models/custom_fields_model.php mode change 100644 => 100755 app/models/index.html create mode 100755 app/models/install_model.php mode change 100644 => 100755 app/models/link_model.php mode change 100644 => 100755 app/models/states_model.php mode change 100644 => 100755 app/modules/blogs/blogs.php mode change 100644 => 100755 app/modules/blogs/controllers/admincp.php mode change 100644 => 100755 app/modules/blogs/controllers/blog.php mode change 100644 => 100755 app/modules/blogs/models/blog_model.php mode change 100644 => 100755 app/modules/blogs/views/blog_form.php mode change 100644 => 100755 app/modules/blogs/views/blogs.php mode change 100644 => 100755 app/modules/custom_fields/controllers/admincp.php mode change 100644 => 100755 app/modules/custom_fields/custom_fields.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtype.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/checkbox.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/date.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/datetime.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/file_upload.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/member_group_relationship.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/multicheckbox.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/multiselect.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/radio.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/relationship.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/select.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/subscription_relationship.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/text.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/textarea.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/topic_relationship.php mode change 100644 => 100755 app/modules/custom_fields/libraries/fieldtypes/wysiwyg.php mode change 100644 => 100755 app/modules/custom_fields/libraries/form_builder.php mode change 100644 => 100755 app/modules/custom_fields/template_plugins/function.custom_field.php mode change 100644 => 100755 app/modules/custom_fields/views/arrange_fields.php mode change 100644 => 100755 app/modules/custom_fields/views/custom_fields.php mode change 100644 => 100755 app/modules/custom_fields/views/field_form.php mode change 100644 => 100755 app/modules/emails/controllers/admincp.php mode change 100644 => 100755 app/modules/emails/emails.php mode change 100644 => 100755 app/modules/emails/models/email_model.php mode change 100644 => 100755 app/modules/emails/models/email_template_model.php mode change 100644 => 100755 app/modules/emails/template_import/email_layout.thtml mode change 100644 => 100755 app/modules/emails/template_import/member_forgot_password.thtml mode change 100644 => 100755 app/modules/emails/template_import/member_register.thtml mode change 100644 => 100755 app/modules/emails/template_import/member_validate_email.thtml mode change 100644 => 100755 app/modules/emails/template_import/store_order.thtml mode change 100644 => 100755 app/modules/emails/template_import/store_order_product_downloadable.thtml mode change 100644 => 100755 app/modules/emails/template_import/subscription_charge.thtml mode change 100644 => 100755 app/modules/emails/template_import/subscription_expire.thtml mode change 100644 => 100755 app/modules/emails/views/email_form.php mode change 100644 => 100755 app/modules/emails/views/email_layout.php mode change 100644 => 100755 app/modules/emails/views/emails.php mode change 100644 => 100755 app/modules/emails/views/select_hook.php mode change 100644 => 100755 app/modules/emails/views/send.php mode change 100644 => 100755 app/modules/forms/controllers/admincp.php mode change 100644 => 100755 app/modules/forms/controllers/form.php mode change 100644 => 100755 app/modules/forms/forms.php mode change 100644 => 100755 app/modules/forms/models/form_model.php mode change 100644 => 100755 app/modules/forms/template_plugins/block.form.php mode change 100644 => 100755 app/modules/forms/views/fields.php mode change 100644 => 100755 app/modules/forms/views/form.php mode change 100644 => 100755 app/modules/forms/views/forms.php mode change 100644 => 100755 app/modules/forms/views/response.php mode change 100644 => 100755 app/modules/forms/views/responses.php mode change 100644 => 100755 app/modules/googleanalytics/controllers/admincp.php mode change 100644 => 100755 app/modules/googleanalytics/googleanalytics.php mode change 100644 => 100755 app/modules/googleanalytics/template_plugins/outputfilter.googleanalytics.php mode change 100644 => 100755 app/modules/googleanalytics/views/generic.php mode change 100644 => 100755 app/modules/import/controllers/admincp.php mode change 100644 => 100755 app/modules/import/import.php mode change 100644 => 100755 app/modules/import/views/fields.php mode change 100644 => 100755 app/modules/import/views/index.php mode change 100644 => 100755 app/modules/import/views/results.php mode change 100644 => 100755 app/modules/menu_manager/controllers/admincp.php mode change 100644 => 100755 app/modules/menu_manager/menu_manager.php mode change 100644 => 100755 app/modules/menu_manager/models/menu_model.php mode change 100644 => 100755 app/modules/menu_manager/template_plugins/function.menu.php mode change 100644 => 100755 app/modules/menu_manager/views/links.php mode change 100644 => 100755 app/modules/menu_manager/views/menu_form.php mode change 100644 => 100755 app/modules/menu_manager/views/menu_manager.php mode change 100644 => 100755 app/modules/menu_manager/views/possible_links.php mode change 100644 => 100755 app/modules/modules/models/module_model.php mode change 100644 => 100755 app/modules/paywall/controllers/admincp.php mode change 100644 => 100755 app/modules/paywall/controllers/protected_link.php mode change 100644 => 100755 app/modules/paywall/helpers/paywall_helper.php mode change 100644 => 100755 app/modules/paywall/paywall.php mode change 100644 => 100755 app/modules/paywall/template_plugins/function.protected_link.php mode change 100644 => 100755 app/modules/paywall/views/paywall_configuration.php mode change 100644 => 100755 app/modules/publish/controllers/admincp.php mode change 100644 => 100755 app/modules/publish/controllers/content.php mode change 100644 => 100755 app/modules/publish/models/content_model.php mode change 100644 => 100755 app/modules/publish/models/content_type_model.php mode change 100644 => 100755 app/modules/publish/models/topic_model.php mode change 100644 => 100755 app/modules/publish/publish.php mode change 100644 => 100755 app/modules/publish/template_plugins/block.content.php mode change 100644 => 100755 app/modules/publish/template_plugins/block.content_in_topic.php mode change 100644 => 100755 app/modules/publish/template_plugins/block.topics.php mode change 100644 => 100755 app/modules/publish/views/content.php mode change 100644 => 100755 app/modules/publish/views/content_non_standard.php mode change 100644 => 100755 app/modules/publish/views/content_standard.php mode change 100644 => 100755 app/modules/publish/views/content_types.php mode change 100644 => 100755 app/modules/publish/views/create_post.php mode change 100644 => 100755 app/modules/publish/views/create_type.php mode change 100644 => 100755 app/modules/publish/views/topic_form.php mode change 100644 => 100755 app/modules/publish/views/topics.php mode change 100644 => 100755 app/modules/publish/views/type_fields.php mode change 100644 => 100755 app/modules/publish/views/type_form.php mode change 100644 => 100755 app/modules/reports/controllers/admincp.php mode change 100644 => 100755 app/modules/reports/reports.php mode change 100644 => 100755 app/modules/reports/views/cancellations.php mode change 100644 => 100755 app/modules/reports/views/coupons.php mode change 100644 => 100755 app/modules/reports/views/cronjob.php mode change 100644 => 100755 app/modules/reports/views/expirations.php mode change 100644 => 100755 app/modules/reports/views/invoice.php mode change 100644 => 100755 app/modules/reports/views/invoices.php mode change 100644 => 100755 app/modules/reports/views/mark_refund.php mode change 100644 => 100755 app/modules/reports/views/popular.php mode change 100644 => 100755 app/modules/reports/views/products.php mode change 100644 => 100755 app/modules/reports/views/registrations.php mode change 100644 => 100755 app/modules/reports/views/subscriptions.php mode change 100644 => 100755 app/modules/reports/views/taxes.php mode change 100644 => 100755 app/modules/rss/controllers/admincp.php mode change 100644 => 100755 app/modules/rss/controllers/feed.php mode change 100644 => 100755 app/modules/rss/models/rss_model.php mode change 100644 => 100755 app/modules/rss/rss.php mode change 100644 => 100755 app/modules/rss/views/feed_form.php mode change 100644 => 100755 app/modules/rss/views/rss_feeds.php mode change 100644 => 100755 app/modules/search/controllers/admincp.php mode change 100644 => 100755 app/modules/search/controllers/search.php mode change 100644 => 100755 app/modules/search/libraries/search_results.php mode change 100644 => 100755 app/modules/search/search.php mode change 100644 => 100755 app/modules/search/views/search_configuration.php mode change 100644 => 100755 app/modules/settings/controllers/admincp.php mode change 100644 => 100755 app/modules/settings/models/settings_model.php mode change 100644 => 100755 app/modules/settings/settings.php mode change 100644 => 100755 app/modules/settings/views/module_uninstall_confirm.php mode change 100644 => 100755 app/modules/settings/views/modules.php mode change 100644 => 100755 app/modules/settings/views/settings.php mode change 100644 => 100755 app/modules/theme/controllers/admincp.php mode change 100644 => 100755 app/modules/theme/controllers/template.php mode change 100644 => 100755 app/modules/theme/models/theme_model.php mode change 100644 => 100755 app/modules/theme/theme.php mode change 100644 => 100755 app/modules/theme/views/editor.php mode change 100644 => 100755 app/modules/theme/views/install_complete.php mode change 100644 => 100755 app/modules/theme/views/install_confirm.php mode change 100644 => 100755 app/modules/theme/views/themes.php mode change 100644 => 100755 app/modules/users/controllers/admincp.php mode change 100644 => 100755 app/modules/users/controllers/user_activity.php mode change 100644 => 100755 app/modules/users/controllers/users.php mode change 100644 => 100755 app/modules/users/models/login_model.php mode change 100644 => 100755 app/modules/users/models/user_model.php mode change 100644 => 100755 app/modules/users/models/usergroup_model.php mode change 100644 => 100755 app/modules/users/template_plugins/block.in_group.php mode change 100644 => 100755 app/modules/users/template_plugins/block.login_form.php mode change 100644 => 100755 app/modules/users/template_plugins/block.members.php mode change 100644 => 100755 app/modules/users/template_plugins/block.not_in_group.php mode change 100644 => 100755 app/modules/users/template_plugins/block.registration_form.php mode change 100644 => 100755 app/modules/users/template_plugins/outputfilter.user_activity.php mode change 100644 => 100755 app/modules/users/users.php mode change 100644 => 100755 app/modules/users/views/data.php mode change 100644 => 100755 app/modules/users/views/group_form.php mode change 100644 => 100755 app/modules/users/views/groups.php mode change 100644 => 100755 app/modules/users/views/logins.php mode change 100644 => 100755 app/modules/users/views/member_list_config.php mode change 100644 => 100755 app/modules/users/views/profile.php mode change 100644 => 100755 app/modules/users/views/user_form.php mode change 100644 => 100755 app/modules/users/views/users.php mode change 100644 => 100755 app/third_party/MX/Base.php mode change 100644 => 100755 app/third_party/MX/Ci.php mode change 100644 => 100755 app/third_party/MX/Config.php mode change 100644 => 100755 app/third_party/MX/Controller.php mode change 100644 => 100755 app/third_party/MX/Lang.php mode change 100644 => 100755 app/third_party/MX/Loader.php mode change 100644 => 100755 app/third_party/MX/Modules.php mode change 100644 => 100755 app/third_party/MX/Router.php mode change 100644 => 100755 app/updates/3.01.php mode change 100644 => 100755 app/updates/3.02.php mode change 100644 => 100755 app/updates/3.03.php mode change 100644 => 100755 app/updates/3.35.php mode change 100644 => 100755 app/updates/3.38.php mode change 100644 => 100755 app/updates/3.39.php mode change 100644 => 100755 app/updates/3.40.php mode change 100644 => 100755 app/updates/3.69.php mode change 100644 => 100755 app/updates/install.php mode change 100644 => 100755 app/views/cp/dashboard.php mode change 100644 => 100755 app/views/cp/error.php mode change 100644 => 100755 app/views/cp/footer.php mode change 100644 => 100755 app/views/cp/header.php mode change 100644 => 100755 app/views/cp/html_footer.php mode change 100644 => 100755 app/views/cp/html_header.php mode change 100644 => 100755 app/views/cp/login.php mode change 100644 => 100755 app/views/index.html mode change 100644 => 100755 app/views/install/admin.php mode change 100644 => 100755 app/views/install/complete.php mode change 100644 => 100755 app/views/install/configuration.php mode change 100644 => 100755 app/views/install/footer.php mode change 100644 => 100755 app/views/install/header.php mode change 100644 => 100755 branding/default/css/dashboard.css mode change 100644 => 100755 branding/default/css/dataset.css mode change 100644 => 100755 branding/default/css/datepicker.css mode change 100644 => 100755 branding/default/css/installer.css mode change 100644 => 100755 branding/default/css/login.css mode change 100644 => 100755 branding/default/css/menu_manager.css mode change 100644 => 100755 branding/default/css/settings.css mode change 100644 => 100755 branding/default/css/theme_editor.css mode change 100644 => 100755 branding/default/css/universal.css mode change 100644 => 100755 branding/default/images/arrow.png mode change 100644 => 100755 branding/default/images/box-bottom-left.gif mode change 100644 => 100755 branding/default/images/box-bottom-right.gif mode change 100644 => 100755 branding/default/images/box-bottom.gif mode change 100644 => 100755 branding/default/images/box-right.gif mode change 100644 => 100755 branding/default/images/box-top-right.gif mode change 100644 => 100755 branding/default/images/button.gif mode change 100644 => 100755 branding/default/images/creditcard.png mode change 100644 => 100755 branding/default/images/customer.png mode change 100644 => 100755 branding/default/images/dashbox_top.gif mode change 100644 => 100755 branding/default/images/gateway.png mode change 100644 => 100755 branding/default/images/grey_arrow.gif mode change 100644 => 100755 branding/default/images/large_button.gif mode change 100644 => 100755 branding/default/images/loading.gif mode change 100644 => 100755 branding/default/images/login.gif mode change 100644 => 100755 branding/default/images/money.png mode change 100644 => 100755 branding/default/images/nav_dashboard.png mode change 100644 => 100755 branding/default/images/recurring.png mode change 100644 => 100755 branding/default/images/refreshing.gif mode change 100644 => 100755 branding/default/images/refunded.png mode change 100644 => 100755 branding/default/images/secure64.png mode change 100644 => 100755 branding/default/images/support.png mode change 100644 => 100755 branding/default/images/warning64.png mode change 100644 => 100755 branding/default/images/x.png mode change 100644 => 100755 branding/default/js/arrange_fields.js mode change 100644 => 100755 branding/default/js/ckeditor.old/.htaccess mode change 100644 => 100755 branding/default/js/ckeditor.old/CHANGES.md mode change 100644 => 100755 branding/default/js/ckeditor.old/LICENSE.html mode change 100644 => 100755 branding/default/js/ckeditor.old/LICENSE.md mode change 100644 => 100755 branding/default/js/ckeditor.old/README.md mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/adapters/jquery.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/_bootstrap.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/ckeditor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/ckeditor_base.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/ckeditor_basic.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/command.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/commanddefinition.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/config.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dataprocessor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/comment.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/document.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/documentfragment.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/domobject.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/element.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/elementpath.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/event.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/node.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/nodelist.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/range.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/rangelist.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/text.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/walker.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dom/window.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/dtd.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/editor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/editor_basic.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/env.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/event.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/eventInfo.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/focusmanager.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser/basicwriter.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser/cdata.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser/comment.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser/element.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser/filter.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser/fragment.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/htmlparser/text.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/lang.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/loader.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/plugindefinition.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/plugins.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/resourcemanager.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/scriptloader.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/skins.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/themes.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/tools.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/core/ui.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/_languages.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/_translationstatus.txt mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/af.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ar.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/bg.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/bn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/bs.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/da.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/en-au.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/en-ca.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/en-gb.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/es.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/eu.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/fo.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/fr-ca.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/gl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/gu.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/hi.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/hu.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/is.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ja.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ka.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/km.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ko.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/lt.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/mn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ms.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/pl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/pt.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ro.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/ru.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/sl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/sr-latn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/sr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/sv.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/th.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/uk.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/vi.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/lang/zh.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/dialogs/a11yhelp.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/about/dialogs/about.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/about/dialogs/logo_ckeditor.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/about/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/adobeair/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/ajax/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/autogrow/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/basicstyles/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/bbcode/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/bidi/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/blockquote/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/button/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/clipboard/dialogs/paste.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/clipboard/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/colorbutton/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/colordialog/dialogs/colordialog.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/colordialog/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/contextmenu/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/devtools/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/devtools/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/dialog/dialogDefinition.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/dialog/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/dialogadvtab/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/dialogui/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/div/dialogs/div.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/div/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/docprops/dialogs/docprops.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/docprops/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/domiterator/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/editingblock/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/elementspath/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/enterkey/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/entities/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/fakeobjects/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/filebrowser/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/find/dialogs/find.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/find/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/flash/dialogs/flash.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/flash/images/placeholder.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/flash/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/floatpanel/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/font/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/format/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/button.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/checkbox.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/form.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/hiddenfield.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/radio.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/select.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textarea.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textfield.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/images/hiddenfield.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/forms/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/horizontalrule/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/htmldataprocessor/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/htmlwriter/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/iframe/dialogs/iframe.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/iframe/images/placeholder.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/iframe/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/iframedialog/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/image/dialogs/image.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/image/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/indent/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/justify/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/keystrokes/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/link/dialogs/anchor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/link/dialogs/link.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/link/images/anchor.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/link/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/list/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/listblock/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/liststyle/dialogs/liststyle.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/liststyle/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/maximize/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/menu/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/menubutton/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/newpage/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/pagebreak/images/pagebreak.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/pagebreak/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/panel/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/panelbutton/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/pastefromword/filter/default.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/pastefromword/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/pastetext/dialogs/pastetext.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/pastetext/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/placeholder/dialogs/placeholder.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/placeholder/placeholder.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/placeholder/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/popup/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/preview/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/print/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/removeformat/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/resize/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/richcombo/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/save/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/options.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/toolbar.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/scayt/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/selection/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_address.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_blockquote.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_div.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h1.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h2.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h3.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h4.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h5.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_p.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_pre.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showblocks/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/showborders/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/dialogs/smiley.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/angel_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/angry_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/broken_heart.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/confused_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/cry_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/devil_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/embaressed_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/envelope.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/heart.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/kiss.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/lightbulb.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/omg_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/regular_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/sad_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/shades_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/teeth_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_down.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_up.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/tounge_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/whatchutalkingabout_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/images/wink_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/smiley/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/sourcearea/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/specialchar/dialogs/specialchar.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/specialchar/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/specialchar/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/styles/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/styles/styles/default.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/stylescombo/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/stylesheetparser/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/tab/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/table/dialogs/table.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/table/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/tableresize/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/tabletools/dialogs/tableCell.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/tabletools/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/templates/dialogs/templates.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/templates/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/templates/templates/default.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template1.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template2.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template3.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/toolbar/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/dialogs/uicolor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/uicolor.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_bg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_thumb.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_mask.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_thumb.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/yui.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/yui.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/undo/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/ciframe.html mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/tmpFrameset.html mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/wsc/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/wysiwygarea/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/plugins/xml/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/editor.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/elementspath.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/icons.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/icons_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/mini.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/noimage.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/sprites.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/sprites_ie6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/images/toolbar_start.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/mainui.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/menu.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/panel.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/presets.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/reset.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/richcombo.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/skin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/templates.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/kama/toolbar.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/editor.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/elementspath.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/icons.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/icons_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/images/mini.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/images/noimage.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites_ie6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/mainui.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/menu.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/panel.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/presets.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/reset.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/richcombo.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/skin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/templates.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/office2003/toolbar.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/editor.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/elementspath.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/icons.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/icons_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/mini.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/noimage.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/sprites.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/sprites_ie6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/images/toolbar_start.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/mainui.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/menu.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/panel.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/presets.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/reset.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/richcombo.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/skin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/templates.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/skins/v2/toolbar.css mode change 100644 => 100755 branding/default/js/ckeditor.old/_source/themes/default/theme.js mode change 100644 => 100755 branding/default/js/ckeditor.old/adapters/jquery.js mode change 100644 => 100755 branding/default/js/ckeditor.old/build-config.js mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor.asp mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor.pack mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor.php mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor_basic.js mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor_basic_source.js mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor_php4.php mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor_php5.php mode change 100644 => 100755 branding/default/js/ckeditor.old/ckeditor_source.js mode change 100644 => 100755 branding/default/js/ckeditor.old/config.js mode change 100644 => 100755 branding/default/js/ckeditor.old/contents.css mode change 100644 => 100755 branding/default/js/ckeditor.old/images/spacer.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/browse.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/config.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/core/.htaccess mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/core/autoload.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/core/browser.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/core/types/type_img.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/core/types/type_mime.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/core/uploader.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/css/index.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/doc/.htaccess mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/doc/Changelog mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/doc/INSTALL mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.GPL mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.LGPL mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/doc/README mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/0bject.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/clipboard.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/files.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/folders.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/index.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/init.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/misc.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/settings.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/browser/toolbar.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/helper.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/jquery.drag.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/jquery.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js/jquery.rightClick.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/js_localize.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/.htaccess mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/bg.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/cs.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/de.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/en.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/es.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/fr.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/hu.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/it.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/pl.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/pt.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lang/ru.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/.htaccess mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/class_input.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/class_zipFolder.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/helper_dir.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/helper_file.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/helper_httpCache.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/helper_path.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/lib/helper_text.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/about.txt mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/..png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/.image.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/avi.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bat.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bmp.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bz2.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ccd.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cgi.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/com.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/csh.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cue.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/deb.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/dll.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/doc.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/docx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/exe.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fla.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/flv.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fon.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gif.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gz.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/htm.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/html.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ini.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/iso.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jar.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/java.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpeg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/js.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mds.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mdx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mid.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/midi.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mkv.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mov.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mp3.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpeg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nfo.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nrg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ogg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pdf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/php.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/phps.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pm.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/png.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ppt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pptx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/qt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rpm.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rtf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sh.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/srt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sub.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/swf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tgz.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tif.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tiff.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/torrent.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ttf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/txt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wav.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wma.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xls.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xlsx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/zip.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/..png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/.image.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/avi.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bat.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bmp.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bz2.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ccd.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cgi.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/com.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/csh.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cue.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/deb.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/dll.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/doc.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/docx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/exe.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fla.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/flv.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fon.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gif.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gz.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/htm.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/html.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ini.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/iso.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jar.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/java.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpeg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/js.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mds.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mdx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mid.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/midi.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mkv.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mov.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mp3.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpeg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nfo.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nrg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ogg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pdf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/php.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/phps.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pm.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/png.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ppt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pptx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/qt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rpm.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rtf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sh.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/srt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sub.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/swf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tgz.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tif.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tiff.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/torrent.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ttf.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/txt.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wav.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wma.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xls.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xlsx.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/zip.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/about.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-add.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-clear.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/copy.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/delete.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/download.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/folder-new.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/maximize.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/move.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/refresh.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/rename.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/select.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/settings.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/upload.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/view.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/loading.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/denied.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder_current.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/minus.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/plus.png mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/init.js mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/style.css mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/.htaccess mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl__css.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl__javascript.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_browser.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_chDir.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_deleteDir.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_error.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_expand.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_init.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_renameDir.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/upload.php mode change 100644 => 100755 branding/default/js/ckeditor.old/kcfinder/upload/.htaccess mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/_languages.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/_translationstatus.txt mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/af.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ar.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/bg.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/bn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/bs.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/da.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/en-au.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/en-ca.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/en-gb.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/es.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/eu.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/fo.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/fr-ca.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/gl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/gu.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/hi.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/hu.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/is.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ja.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ka.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/km.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ko.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ku.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/lt.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/mk.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/mn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ms.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/pl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/pt.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ro.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ru.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/sl.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/sr-latn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/sr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/sv.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/th.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/ug.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/uk.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/vi.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor.old/lang/zh.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/MediaEmbed/dialogs/mediaembed.html mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/MediaEmbed/images/icon.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/MediaEmbed/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/a11yhelp/dialogs/a11yhelp.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/a11yhelp/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/a11yhelp/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/about/dialogs/about.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/about/dialogs/logo_ckeditor.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/adobeair/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/ajax/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/autogrow/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/bbcode/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/clipboard/dialogs/paste.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/colordialog/dialogs/colordialog.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/devtools/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/devtools/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/dialog/dialogDefinition.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/div/dialogs/div.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/docprops/dialogs/docprops.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/docprops/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/fakeobjects/images/spacer.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/find/dialogs/find.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/flash/dialogs/flash.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/flash/images/placeholder.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/button.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/checkbox.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/form.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/hiddenfield.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/radio.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/select.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/textarea.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/dialogs/textfield.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/forms/images/hiddenfield.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/iframe/dialogs/iframe.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/iframe/images/placeholder.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/iframedialog/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/image/dialogs/image.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/link/dialogs/anchor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/link/dialogs/link.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/link/images/anchor.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/link/images/anchor.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/liststyle/dialogs/liststyle.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/pagebreak/images/pagebreak.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/pastefromword/filter/default.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/pastetext/dialogs/pastetext.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/placeholder/dialogs/placeholder.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/placeholder/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/placeholder/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/placeholder/placeholder.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/placeholder/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/scayt/dialogs/options.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/scayt/dialogs/toolbar.css mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_address.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_blockquote.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_div.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h1.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h2.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h3.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h4.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h5.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_p.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/showblocks/images/block_pre.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/dialogs/smiley.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/angel_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/angry_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/broken_heart.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/confused_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/cry_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/devil_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/embaressed_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/envelope.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/heart.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/kiss.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/lightbulb.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/omg_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/regular_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/sad_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/shades_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/teeth_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_down.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_up.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/tounge_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/whatchutalkingabout_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/smiley/images/wink_smile.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/specialchar/dialogs/specialchar.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/specialchar/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/styles/styles/default.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/stylesheetparser/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/table/dialogs/table.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/tableresize/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/tabletools/dialogs/tableCell.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/templates/dialogs/templates.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/templates/templates/default.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/templates/templates/images/template1.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/templates/templates/images/template2.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/templates/templates/images/template3.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/dialogs/uicolor.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/uicolor.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_bg.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_thumb.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_mask.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_thumb.png mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/yui.css mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/uicolor/yui/yui.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/wsc/dialogs/ciframe.html mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/wsc/dialogs/tmpFrameset.html mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.css mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.js mode change 100644 => 100755 branding/default/js/ckeditor.old/plugins/xml/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/ajax.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/api.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/appendto.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/assets/inlineall/logo.png mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/assets/outputxhtml/outputxhtml.css mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/assets/posteddata.php mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/assets/sample.css mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/assets/sample.jpg mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/assets/uilanguages/languages.js mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/datafiltering.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/divreplace.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/index.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/inlineall.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/inlinebycode.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/plugins/dialog/assets/my_dialog.js mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/plugins/dialog/dialog.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/plugins/enterkey/enterkey.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/plugins/toolbar/toolbar.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/plugins/wysiwygarea/fullpage.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/readonly.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/replacebyclass.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/replacebycode.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/sample.css mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/sample.js mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/sample_posteddata.php mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/tabindex.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/uicolor.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/uilanguages.html mode change 100644 => 100755 branding/default/js/ckeditor.old/samples/xhtmlstyle.html mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/editor.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/icons_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/dialog_sides_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/mini.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/noimage.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/sprites.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/sprites_ie6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/images/toolbar_start.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/skin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/kama/templates.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/dialog_ie.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/dialog_ie7.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/dialog_ie8.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/dialog_iequirks.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/dialog_opera.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/editor.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/editor_gecko.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/editor_ie.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/editor_ie7.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/editor_ie8.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/editor_iequirks.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/images/arrow.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/images/close.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/images/mini.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/moono/readme.md mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/editor.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/icons_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/images/mini.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/images/noimage.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/images/sprites.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/images/sprites_ie6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/skin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/office2003/templates.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/editor.css mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/icons.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/icons_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/dialog_sides_rtl.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/mini.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/noimage.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/sprites.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/sprites_ie6.png mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/images/toolbar_start.gif mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/skin.js mode change 100644 => 100755 branding/default/js/ckeditor.old/skins/v2/templates.css mode change 100644 => 100755 branding/default/js/ckeditor.old/styles.js mode change 100644 => 100755 branding/default/js/ckeditor.old/themes/default/theme.js mode change 100644 => 100755 branding/default/js/ckeditor/CHANGES.md mode change 100644 => 100755 branding/default/js/ckeditor/LICENSE.md mode change 100644 => 100755 branding/default/js/ckeditor/README.md mode change 100644 => 100755 branding/default/js/ckeditor/build-config.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/css/codemirror.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/codemirror.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/css.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/htmlmixed.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/javascript.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/closetag.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/colorize.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/continuecomment.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/continuelist.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/foldcode.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/formatting.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/javascript-hint.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/loadmode.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/match-highlighter.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/matchbrackets.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/multiplex.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/overlay.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/pig-hint.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/runmode-standalone.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/runmode.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/search.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/searchcursor.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/util/xml-hint.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/js/xml.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/ambiance-mobile.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/ambiance.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/blackboard.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/cobalt.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/eclipse.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/elegant.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/erlang-dark.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/lesser-dark.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/monokai.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/neat.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/night.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/rubyblue.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/solarized.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/twilight.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/vibrant-ink.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/codemirror/theme/xq-dark.css mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/icons/bgcolor.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/icons/textcolor.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/af.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ar.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/bg.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/bn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/bs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/da.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/en-au.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/en-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/en-gb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/es.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/eu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/fo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/fr-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/gl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/gu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/hi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/hu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/is.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ja.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ka.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/km.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ko.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ku.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/lt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/mk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/mn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ms.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/pl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/pt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ro.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ru.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/sl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/sr-latn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/sr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/sv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/th.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/ug.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/uk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/vi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/lang/zh.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/colorbutton/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/fakeobjects/images/spacer.gif mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/af.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ar.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/bg.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/bn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/bs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/da.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/en-au.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/en-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/en-gb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/es.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/eu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/fo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/fr-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/gl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/gu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/hi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/hu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/is.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ja.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ka.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/km.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ko.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ku.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/lt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/mk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/mn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ms.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/pl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/pt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ro.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ru.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/sl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/sr-latn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/sr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/sv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/th.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/ug.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/uk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/vi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/lang/zh.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/font/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/icons.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/image/images/noimage.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/icons/justifyblock.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/icons/justifycenter.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/icons/justifyleft.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/icons/justifyright.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/af.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ar.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/bg.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/bn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/bs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/da.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/en-au.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/en-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/en-gb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/es.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/eu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/fo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/fr-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/gl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/gu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/hi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/hu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/is.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ja.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ka.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/km.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ko.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ku.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/lt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/mk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/mn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ms.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/pl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/pt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ro.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ru.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/sl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/sr-latn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/sr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/sv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/th.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/ug.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/uk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/vi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/lang/zh.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/justify/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/link/images/anchor.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/magicline/images/icon.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/menubutton/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/panelbutton/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/LICENSE.md mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/README.md mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/icons/scayt.png mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/af.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ar.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/bg.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/bn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/bs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/da.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/en-au.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/en-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/en-gb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/es.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/eu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/fo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/fr-ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/gl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/gu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/hi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/hu.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/is.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ja.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ka.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/km.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ko.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ku.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/lt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/mk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/mn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ms.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/pl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/pt.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ro.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ru.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/sl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/sr-latn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/sr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/sv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/th.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/ug.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/uk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/vi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/lang/zh.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/scayt/plugin.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/de.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/el.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/en.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/et.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/he.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/it.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/no.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js mode change 100644 => 100755 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js mode change 100644 => 100755 branding/default/js/ckeditor/samples/ajax.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/api.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/appendto.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/assets/inlineall/logo.png mode change 100644 => 100755 branding/default/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css mode change 100644 => 100755 branding/default/js/ckeditor/samples/assets/posteddata.php mode change 100644 => 100755 branding/default/js/ckeditor/samples/assets/sample.css mode change 100644 => 100755 branding/default/js/ckeditor/samples/assets/sample.jpg mode change 100644 => 100755 branding/default/js/ckeditor/samples/assets/uilanguages/languages.js mode change 100644 => 100755 branding/default/js/ckeditor/samples/divreplace.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/index.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/inlineall.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/inlinebycode.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/dialog/dialog.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/enterkey/enterkey.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/magicline/magicline.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/toolbar/toolbar.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/readonly.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/replacebyclass.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/replacebycode.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/sample.css mode change 100644 => 100755 branding/default/js/ckeditor/samples/sample.js mode change 100644 => 100755 branding/default/js/ckeditor/samples/sample_posteddata.php mode change 100644 => 100755 branding/default/js/ckeditor/samples/tabindex.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/uicolor.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/uilanguages.html mode change 100644 => 100755 branding/default/js/ckeditor/samples/xhtmlstyle.html mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/dialog.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/dialog_ie.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/dialog_ie7.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/dialog_ie8.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/dialog_opera.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/editor.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/editor_gecko.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/editor_ie.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/editor_ie7.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/editor_ie8.css mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/icons.png mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/images/arrow.png mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/images/close.png mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/images/mini.png mode change 100644 => 100755 branding/default/js/ckeditor/skins/moono/readme.md mode change 100644 => 100755 branding/default/js/ckeditor/styles.js mode change 100644 => 100755 branding/default/js/dashboard.js mode change 100644 => 100755 branding/default/js/data.user_fields.js mode change 100644 => 100755 branding/default/js/date.js mode change 100644 => 100755 branding/default/js/datePicker.js mode change 100644 => 100755 branding/default/js/form.address.js mode change 100644 => 100755 branding/default/js/form.blog.js mode change 100644 => 100755 branding/default/js/form.coupon.js mode change 100644 => 100755 branding/default/js/form.email.js mode change 100644 => 100755 branding/default/js/form.field.js mode change 100644 => 100755 branding/default/js/form.js mode change 100644 => 100755 branding/default/js/form.plan.js mode change 100644 => 100755 branding/default/js/form.rss_feed.js mode change 100644 => 100755 branding/default/js/form.send_email.js mode change 100644 => 100755 branding/default/js/form.transaction.js mode change 100644 => 100755 branding/default/js/image_gallery.js mode change 100644 => 100755 branding/default/js/image_gallery_form.js mode change 100644 => 100755 branding/default/js/jquery-1.4.2.js mode change 100644 => 100755 branding/default/js/jquery.quicksearch.js mode change 100644 => 100755 branding/default/js/jquery.simplemodal.1.4.min.js mode change 100644 => 100755 branding/default/js/jquery.sparkline.js mode change 100644 => 100755 branding/default/js/menu_manager.js mode change 100644 => 100755 branding/default/js/product.js mode change 100644 => 100755 branding/default/js/product_option.js mode change 100644 => 100755 branding/default/js/recurring.js mode change 100644 => 100755 branding/default/js/report.invoice.js mode change 100644 => 100755 branding/default/js/report.products.js mode change 100644 => 100755 branding/default/js/settings.js mode change 100644 => 100755 branding/default/js/sortable.js mode change 100644 => 100755 branding/default/js/theme_editor.js mode change 100644 => 100755 branding/default/js/tiptip.min.js mode change 100644 => 100755 branding/default/js/universal.js mode change 100644 => 100755 codeigniter_license.txt mode change 100644 => 100755 hero-os-license.txt mode change 100644 => 100755 system/database/drivers/cubrid/cubrid_driver.php mode change 100644 => 100755 system/database/drivers/cubrid/cubrid_forge.php mode change 100644 => 100755 system/database/drivers/cubrid/cubrid_result.php mode change 100644 => 100755 system/database/drivers/cubrid/cubrid_utility.php mode change 100644 => 100755 system/database/drivers/cubrid/index.html mode change 100644 => 100755 system/database/drivers/pdo/index.html mode change 100644 => 100755 system/database/drivers/pdo/pdo_driver.php mode change 100644 => 100755 system/database/drivers/pdo/pdo_forge.php mode change 100644 => 100755 system/database/drivers/pdo/pdo_result.php mode change 100644 => 100755 system/database/drivers/pdo/pdo_utility.php mode change 100644 => 100755 system/language/english/migration_lang.php mode change 100644 => 100755 system/libraries/Migration.php mode change 100644 => 100755 themes/_common/jquery-1.4.2.min.js mode change 100644 => 100755 themes/_common/preview.jpg mode change 100644 => 100755 themes/_common/shadowbox/LICENSE mode change 100644 => 100755 themes/_common/shadowbox/README mode change 100644 => 100755 themes/_common/shadowbox/close.png mode change 100644 => 100755 themes/_common/shadowbox/expressInstall.swf mode change 100644 => 100755 themes/_common/shadowbox/loading.gif mode change 100644 => 100755 themes/_common/shadowbox/next.png mode change 100644 => 100755 themes/_common/shadowbox/pause.png mode change 100644 => 100755 themes/_common/shadowbox/play.png mode change 100644 => 100755 themes/_common/shadowbox/player.swf mode change 100644 => 100755 themes/_common/shadowbox/previous.png mode change 100644 => 100755 themes/_common/shadowbox/shadowbox.css mode change 100644 => 100755 themes/_common/shadowbox/shadowbox.js mode change 100644 => 100755 themes/_plugins/block.module_installed.php mode change 100644 => 100755 themes/_plugins/block.restricted.php mode change 100644 => 100755 themes/_plugins/function.money_format.php mode change 100644 => 100755 themes/_plugins/function.paginate.php mode change 100644 => 100755 themes/_plugins/function.setting.php mode change 100644 => 100755 themes/_plugins/function.shorten.php mode change 100644 => 100755 themes/_plugins/function.theme_url.php mode change 100644 => 100755 themes/_plugins/function.thumbnail.php mode change 100644 => 100755 themes/_plugins/function.url.php mode change 100644 => 100755 themes/_plugins/function.xss_clean.php mode change 100644 => 100755 themes/_plugins/modifier.parse_as_template.php mode change 100644 => 100755 themes/cubed/account_templates/cancel_subscription.thtml mode change 100644 => 100755 themes/cubed/account_templates/change_password.thtml mode change 100644 => 100755 themes/cubed/account_templates/forgot_password.thtml mode change 100644 => 100755 themes/cubed/account_templates/forgot_password_complete.thtml mode change 100644 => 100755 themes/cubed/account_templates/home.thtml mode change 100644 => 100755 themes/cubed/account_templates/invoice.thtml mode change 100644 => 100755 themes/cubed/account_templates/invoices.thtml mode change 100644 => 100755 themes/cubed/account_templates/login.thtml mode change 100644 => 100755 themes/cubed/account_templates/profile.thtml mode change 100644 => 100755 themes/cubed/account_templates/registration.thtml mode change 100644 => 100755 themes/cubed/archives.thtml mode change 100644 => 100755 themes/cubed/blog.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/account.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/billing_shipping.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/checkout_layout.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/complete.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/free_confirm.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/payment.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/register.thtml mode change 100644 => 100755 themes/cubed/checkout_templates/shipping_method.thtml mode change 100644 => 100755 themes/cubed/content.thtml mode change 100644 => 100755 themes/cubed/css/universal.css mode change 100644 => 100755 themes/cubed/form.thtml mode change 100644 => 100755 themes/cubed/frontpage.thtml mode change 100644 => 100755 themes/cubed/images/banner.jpg mode change 100644 => 100755 themes/cubed/images/button.gif mode change 100644 => 100755 themes/cubed/images/footer_corner.gif mode change 100644 => 100755 themes/cubed/images/logo.jpg mode change 100644 => 100755 themes/cubed/images/navbar_back.gif mode change 100644 => 100755 themes/cubed/images/navbar_left.gif mode change 100644 => 100755 themes/cubed/images/placeholders/apples.jpg mode change 100644 => 100755 themes/cubed/images/placeholders/blueberries.jpg mode change 100644 => 100755 themes/cubed/images/placeholders/cherries.jpg mode change 100644 => 100755 themes/cubed/images/placeholders/oranges.jpg mode change 100644 => 100755 themes/cubed/images/placeholders/pears.jpg mode change 100644 => 100755 themes/cubed/images/placeholders/strawberries.jpg mode change 100644 => 100755 themes/cubed/images/sideleft.gif mode change 100644 => 100755 themes/cubed/install.php mode change 100644 => 100755 themes/cubed/js/checkout.js mode change 100644 => 100755 themes/cubed/js/form.js mode change 100644 => 100755 themes/cubed/js/universal.js mode change 100644 => 100755 themes/cubed/layout.thtml mode change 100644 => 100755 themes/cubed/members_content.thtml mode change 100644 => 100755 themes/cubed/news_post.thtml mode change 100644 => 100755 themes/cubed/paywall.thtml mode change 100644 => 100755 themes/cubed/preview.jpg mode change 100644 => 100755 themes/cubed/rss_feed.txml mode change 100644 => 100755 themes/cubed/search.thtml mode change 100644 => 100755 themes/cubed/static_page.thtml mode change 100644 => 100755 themes/cubed/store_cart.thtml mode change 100644 => 100755 themes/cubed/store_listing.thtml mode change 100644 => 100755 themes/cubed/store_product.thtml mode change 100644 => 100755 themes/cubed/subscriptions.thtml mode change 100644 => 100755 themes/electric/account_templates/cancel_subscription.thtml mode change 100644 => 100755 themes/electric/account_templates/change_password.thtml mode change 100644 => 100755 themes/electric/account_templates/forgot_password.thtml mode change 100644 => 100755 themes/electric/account_templates/forgot_password_complete.thtml mode change 100644 => 100755 themes/electric/account_templates/home.thtml mode change 100644 => 100755 themes/electric/account_templates/invoice.thtml mode change 100644 => 100755 themes/electric/account_templates/invoices.thtml mode change 100644 => 100755 themes/electric/account_templates/login.thtml mode change 100644 => 100755 themes/electric/account_templates/profile.thtml mode change 100644 => 100755 themes/electric/account_templates/registration.thtml mode change 100644 => 100755 themes/electric/archives.thtml mode change 100644 => 100755 themes/electric/blog_post.thtml mode change 100644 => 100755 themes/electric/checkout_templates/account.thtml mode change 100644 => 100755 themes/electric/checkout_templates/billing_shipping.thtml mode change 100644 => 100755 themes/electric/checkout_templates/checkout_layout.thtml mode change 100644 => 100755 themes/electric/checkout_templates/complete.thtml mode change 100644 => 100755 themes/electric/checkout_templates/free_confirm.thtml mode change 100644 => 100755 themes/electric/checkout_templates/payment.thtml mode change 100644 => 100755 themes/electric/checkout_templates/register.thtml mode change 100644 => 100755 themes/electric/checkout_templates/shipping_method.thtml mode change 100644 => 100755 themes/electric/content.thtml mode change 100644 => 100755 themes/electric/css/universal.css mode change 100644 => 100755 themes/electric/event.thtml mode change 100644 => 100755 themes/electric/events.thtml mode change 100644 => 100755 themes/electric/form.thtml mode change 100644 => 100755 themes/electric/frontpage.thtml mode change 100644 => 100755 themes/electric/images/body_back.jpg mode change 100644 => 100755 themes/electric/images/button.gif mode change 100644 => 100755 themes/electric/images/content_back.gif mode change 100644 => 100755 themes/electric/images/header_back.jpg mode change 100644 => 100755 themes/electric/images/logo.png mode change 100644 => 100755 themes/electric/images/nav_separator.png mode change 100644 => 100755 themes/electric/images/navigation_back.jpg mode change 100644 => 100755 themes/electric/images/placeholders/apples.jpg mode change 100644 => 100755 themes/electric/images/placeholders/blueberries.jpg mode change 100644 => 100755 themes/electric/images/placeholders/blueberries2.jpg mode change 100644 => 100755 themes/electric/images/placeholders/cleaning.png mode change 100644 => 100755 themes/electric/images/placeholders/download.jpg mode change 100644 => 100755 themes/electric/images/placeholders/hero.jpg mode change 100644 => 100755 themes/electric/images/placeholders/house.jpg mode change 100644 => 100755 themes/electric/images/placeholders/newyears.jpg mode change 100644 => 100755 themes/electric/images/placeholders/oranges.jpg mode change 100644 => 100755 themes/electric/images/placeholders/strawberries.jpg mode change 100644 => 100755 themes/electric/images/post.gif mode change 100644 => 100755 themes/electric/images/sidebar_body.gif mode change 100644 => 100755 themes/electric/images/sidebar_foot.gif mode change 100644 => 100755 themes/electric/images/sidebar_head.gif mode change 100644 => 100755 themes/electric/images/wrapper_back.gif mode change 100644 => 100755 themes/electric/install.php mode change 100644 => 100755 themes/electric/js/checkout.js mode change 100644 => 100755 themes/electric/js/form.js mode change 100644 => 100755 themes/electric/js/universal.js mode change 100644 => 100755 themes/electric/layout.thtml mode change 100644 => 100755 themes/electric/paywall.thtml mode change 100644 => 100755 themes/electric/preview.jpg mode change 100644 => 100755 themes/electric/rss_feed.txml mode change 100644 => 100755 themes/electric/search.thtml mode change 100644 => 100755 themes/electric/store_cart.thtml mode change 100644 => 100755 themes/electric/store_listing.thtml mode change 100644 => 100755 themes/electric/store_product.thtml mode change 100644 => 100755 themes/electric/subscriptions.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/cancel_subscription.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/change_password.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/forgot_password.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/forgot_password_complete.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/home.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/invoice.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/invoices.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/login.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/profile.thtml mode change 100644 => 100755 themes/night_jungle/account_templates/registration.thtml mode change 100644 => 100755 themes/night_jungle/archives.thtml mode change 100644 => 100755 themes/night_jungle/blog.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/account.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/billing_shipping.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/checkout_layout.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/complete.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/free_confirm.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/payment.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/register.thtml mode change 100644 => 100755 themes/night_jungle/checkout_templates/shipping_method.thtml mode change 100644 => 100755 themes/night_jungle/content.thtml mode change 100644 => 100755 themes/night_jungle/css/universal.css mode change 100644 => 100755 themes/night_jungle/form.thtml mode change 100644 => 100755 themes/night_jungle/frontpage.thtml mode change 100644 => 100755 themes/night_jungle/images/back.jpg mode change 100644 => 100755 themes/night_jungle/images/button.gif mode change 100644 => 100755 themes/night_jungle/images/logo.png mode change 100644 => 100755 themes/night_jungle/images/placeholders/apples.jpg mode change 100644 => 100755 themes/night_jungle/images/placeholders/blueberries.jpg mode change 100644 => 100755 themes/night_jungle/images/placeholders/cherries.jpg mode change 100644 => 100755 themes/night_jungle/images/placeholders/oranges.jpg mode change 100644 => 100755 themes/night_jungle/images/placeholders/pears.jpg mode change 100644 => 100755 themes/night_jungle/images/placeholders/strawberries.jpg mode change 100644 => 100755 themes/night_jungle/images/post.png mode change 100644 => 100755 themes/night_jungle/images/tiger.jpg mode change 100644 => 100755 themes/night_jungle/images/translucent.png mode change 100644 => 100755 themes/night_jungle/install.php mode change 100644 => 100755 themes/night_jungle/js/checkout.js mode change 100644 => 100755 themes/night_jungle/js/form.js mode change 100644 => 100755 themes/night_jungle/js/universal.js mode change 100644 => 100755 themes/night_jungle/layout.thtml mode change 100644 => 100755 themes/night_jungle/members_content.thtml mode change 100644 => 100755 themes/night_jungle/paywall.thtml mode change 100644 => 100755 themes/night_jungle/preview.jpg mode change 100644 => 100755 themes/night_jungle/rss_feed.txml mode change 100644 => 100755 themes/night_jungle/search.thtml mode change 100644 => 100755 themes/night_jungle/static_page.thtml mode change 100644 => 100755 themes/night_jungle/store_cart.thtml mode change 100644 => 100755 themes/night_jungle/store_listing.thtml mode change 100644 => 100755 themes/night_jungle/store_product.thtml mode change 100644 => 100755 themes/night_jungle/subscriptions.thtml mode change 100644 => 100755 themes/orchard/account_templates/cancel_subscription.thtml mode change 100644 => 100755 themes/orchard/account_templates/change_password.thtml mode change 100644 => 100755 themes/orchard/account_templates/forgot_password.thtml mode change 100644 => 100755 themes/orchard/account_templates/forgot_password_complete.thtml mode change 100644 => 100755 themes/orchard/account_templates/home.thtml mode change 100644 => 100755 themes/orchard/account_templates/invoice.thtml mode change 100644 => 100755 themes/orchard/account_templates/invoices.thtml mode change 100644 => 100755 themes/orchard/account_templates/login.thtml mode change 100644 => 100755 themes/orchard/account_templates/profile.thtml mode change 100644 => 100755 themes/orchard/account_templates/registration.thtml mode change 100644 => 100755 themes/orchard/archives.thtml mode change 100644 => 100755 themes/orchard/blog.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/account.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/billing_shipping.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/checkout_layout.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/complete.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/free_confirm.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/payment.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/register.thtml mode change 100644 => 100755 themes/orchard/checkout_templates/shipping_method.thtml mode change 100644 => 100755 themes/orchard/content.thtml mode change 100644 => 100755 themes/orchard/css/universal.css mode change 100644 => 100755 themes/orchard/form.thtml mode change 100644 => 100755 themes/orchard/frontpage.thtml mode change 100644 => 100755 themes/orchard/images/banner.jpg mode change 100644 => 100755 themes/orchard/images/button.gif mode change 100644 => 100755 themes/orchard/images/logo.jpg mode change 100644 => 100755 themes/orchard/images/placeholders/apples.jpg mode change 100644 => 100755 themes/orchard/images/placeholders/blueberries.jpg mode change 100644 => 100755 themes/orchard/images/placeholders/cherries.jpg mode change 100644 => 100755 themes/orchard/images/placeholders/oranges.jpg mode change 100644 => 100755 themes/orchard/images/placeholders/pears.jpg mode change 100644 => 100755 themes/orchard/images/placeholders/strawberries.jpg mode change 100644 => 100755 themes/orchard/install.php mode change 100644 => 100755 themes/orchard/js/checkout.js mode change 100644 => 100755 themes/orchard/js/form.js mode change 100644 => 100755 themes/orchard/js/universal.js mode change 100644 => 100755 themes/orchard/layout.thtml mode change 100644 => 100755 themes/orchard/news_post.thtml mode change 100644 => 100755 themes/orchard/paywall.thtml mode change 100644 => 100755 themes/orchard/preview.jpg mode change 100644 => 100755 themes/orchard/rss_feed.txml mode change 100644 => 100755 themes/orchard/search.thtml mode change 100644 => 100755 themes/orchard/static_page.thtml mode change 100644 => 100755 themes/orchard/store_cart.thtml mode change 100644 => 100755 themes/orchard/store_listing.thtml mode change 100644 => 100755 themes/orchard/store_product.thtml mode change 100644 => 100755 themes/orchard/subscriptions.thtml create mode 100755 writeable/email_templates/.htaccess create mode 100755 writeable/email_templates/email_layout.thtml create mode 100755 writeable/email_templates/index.html create mode 100755 writeable/email_templates/member_forgot_password_2_body.thtml create mode 100755 writeable/email_templates/member_forgot_password_2_subject.thtml create mode 100755 writeable/email_templates/member_register_1_body.thtml create mode 100755 writeable/email_templates/member_register_1_subject.thtml create mode 100755 writeable/email_templates/member_validate_email_3_body.thtml create mode 100755 writeable/email_templates/member_validate_email_3_subject.thtml diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 index 68720571..d0a7717c --- a/.gitignore +++ b/.gitignore @@ -42,4 +42,5 @@ writeable/templates_compile/* # htaccess or generic index file. app/cache/* !app/cache/.htaccess -!app/cache/index.html \ No newline at end of file +!app/cache/index.html +writeable/routes.php diff --git a/.htaccess b/.htaccess old mode 100644 new mode 100755 index 22cf4de5..834f1c90 --- a/.htaccess +++ b/.htaccess @@ -1,31 +1,32 @@ - RewriteEngine On - Options +FollowSymlinks + RewriteEngine On + RewriteBase / + Options +FollowSymlinks - - Order Allow,Deny - Deny from all - + + Order Allow,Deny + Deny from all + - #Removes access to the system folder by users. - #Additionally this will allow you to create a System.php controller, - #previously this would not have been possible. - #'system' can be replaced if you have renamed your system folder. - RewriteCond %{REQUEST_URI} ^system.* - RewriteRule ^(.*)$ index.php?/$1 [L] + #Removes access to the system folder by users. + #Additionally this will allow you to create a System.php controller, + #previously this would not have been possible. + #'system' can be replaced if you have renamed your system folder. + RewriteCond %{REQUEST_URI} ^system.* + RewriteRule ^(.*)$ index.php?/$1 [L] - #Checks to see if the user is attempting to access a valid file, - #such as an image or css document, if this isn't true it sends the - #request to index.php - RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule ^(.*)$ index.php?/$1 [L] + #Checks to see if the user is attempting to access a valid file, + #such as an image or css document, if this isn't true it sends the + #request to index.php + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule ^(.*)$ index.php?/$1 [L] - # If we don't have mod_rewrite installed, all 404's - # can be sent to index.php, and everything works as normal. - # Submitted by: ElliotHaughin + # If we don't have mod_rewrite installed, all 404's + # can be sent to index.php, and everything works as normal. + # Submitted by: ElliotHaughin - ErrorDocument 404 index.php + ErrorDocument 404 index.php diff --git a/1.htaccess b/1.htaccess old mode 100644 new mode 100755 index ddc22a51..3214835b --- a/1.htaccess +++ b/1.htaccess @@ -1,7 +1,8 @@ RewriteEngine On + RewriteBase / Options +FollowSymlinks - + Order Allow,Deny Deny from all diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 9bcd2cf2..0db7db61 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ Hero Please ensure that your hosting environment meets the following specifications: -* PHP 5.1+ -* One available MySQL 3.23+ database. +* PHP 5.6+ and PHP 7.0+ +* One available MySQL database with mysqli or mysqlnd driver. * Apache or Apache-like server that can parse .htaccess files with mod_rewrite rules. * Ability to create one cronjob or scheduled process. diff --git a/app/config/autoload.php b/app/config/autoload.php old mode 100644 new mode 100755 diff --git a/app/config/config.example.php b/app/config/config.example.php old mode 100644 new mode 100755 diff --git a/app/config/constants.php b/app/config/constants.php old mode 100644 new mode 100755 diff --git a/app/config/core_modules.php b/app/config/core_modules.php old mode 100644 new mode 100755 diff --git a/app/config/database.format.php b/app/config/database.format.php old mode 100644 new mode 100755 index 7d5342d5..73078b48 --- a/app/config/database.format.php +++ b/app/config/database.format.php @@ -38,10 +38,10 @@ $active_record = TRUE; $db['default']['hostname'] = "localhost"; -$db['default']['username'] = "root"; -$db['default']['password'] = ''; +$db['default']['username'] = "hero"; +$db['default']['password'] = 'framework'; $db['default']['database'] = "hero"; -$db['default']['dbdriver'] = "mysql"; +$db['default']['dbdriver'] = "mysqli"; $db['default']['dbprefix'] = ""; $db['default']['pconnect'] = TRUE; $db['default']['db_debug'] = TRUE; @@ -52,4 +52,4 @@ /* End of file database.php */ -/* Location: ./app/config/database.php */ \ No newline at end of file +/* Location: ./app/config/database.php */ diff --git a/app/config/default_routes.php b/app/config/default_routes.php old mode 100644 new mode 100755 diff --git a/app/config/doctypes.php b/app/config/doctypes.php old mode 100644 new mode 100755 diff --git a/app/config/email.php b/app/config/email.php old mode 100644 new mode 100755 diff --git a/app/config/foreign_chars.php b/app/config/foreign_chars.php old mode 100644 new mode 100755 diff --git a/app/config/hooks.php b/app/config/hooks.php old mode 100644 new mode 100755 diff --git a/app/config/index.html b/app/config/index.html old mode 100644 new mode 100755 diff --git a/app/config/mimes.php b/app/config/mimes.php old mode 100644 new mode 100755 diff --git a/app/config/pagination.php b/app/config/pagination.php old mode 100644 new mode 100755 diff --git a/app/config/profiler.php b/app/config/profiler.php old mode 100644 new mode 100755 diff --git a/app/config/routes.php b/app/config/routes.php old mode 100644 new mode 100755 diff --git a/app/config/smileys.php b/app/config/smileys.php old mode 100644 new mode 100755 diff --git a/app/config/user_agents.php b/app/config/user_agents.php old mode 100644 new mode 100755 diff --git a/app/config/version.php b/app/config/version.php old mode 100644 new mode 100755 diff --git a/app/controllers/admincp/dashboard.php b/app/controllers/admincp/dashboard.php old mode 100644 new mode 100755 index 82374d17..d9256e30 --- a/app/controllers/admincp/dashboard.php +++ b/app/controllers/admincp/dashboard.php @@ -11,6 +11,7 @@ */ class Dashboard extends Admincp_Controller { + function __construct() { parent::__construct(); @@ -91,8 +92,9 @@ function index() { // system stats $system = array(); - $system['PHP'] = phpversion(); - $system['MySQL'] = mysql_get_server_info(); + $system['PHP'] = explode('~',phpversion())[0]; + $this->load->database(); + $system['MySQL'] = $this->db->conn_id->server_info; $system[$this->config->item('app_name')] = $this->config->item('app_version'); $system['CodeIgniter'] = CI_VERSION; $system['Theme'] = setting('theme'); diff --git a/app/controllers/admincp/dataset.php b/app/controllers/admincp/dataset.php old mode 100644 new mode 100755 diff --git a/app/controllers/admincp/login.php b/app/controllers/admincp/login.php old mode 100644 new mode 100755 diff --git a/app/controllers/cron.php b/app/controllers/cron.php old mode 100644 new mode 100755 diff --git a/app/controllers/error.php b/app/controllers/error.php old mode 100644 new mode 100755 diff --git a/app/controllers/frontpage.php b/app/controllers/frontpage.php old mode 100644 new mode 100755 diff --git a/app/controllers/index.html b/app/controllers/index.html old mode 100644 new mode 100755 diff --git a/app/controllers/install.php b/app/controllers/install.php old mode 100644 new mode 100755 index c70fc140..6ab5d582 --- a/app/controllers/install.php +++ b/app/controllers/install.php @@ -1,4 +1,7 @@ -input->post('base_url') != '') { // we have a submission - + $this->load->model('install_model'); + // validate MySQL info - $valid_mysql = FALSE; - if ($dbh = @mysql_connect($this->input->post('db_host'),$this->input->post('db_user'),$this->input->post('db_pass'))) - { - if (@mysql_select_db($this->input->post('db_name'), $dbh)) - { - $valid_mysql = TRUE; - } - } + $valid_mysql = $this->install_model->validate_creds(); if ($valid_mysql == FALSE) { $error_mysql = TRUE; @@ -93,39 +90,7 @@ function index() { // import initial database structure // note - all update files will be run before the next step loads (because auto_updater will be invoked) - $structure = read_file(APPPATH . 'updates/install.php'); - $structure = str_replace('','',$structure); - - // break into newlines - $structure = explode("\n",$structure); - - // run mysql queries - $query = ""; - $querycount = 0; - foreach ($structure as $sql_line) - { - if (trim($sql_line) != "" and substr($sql_line,0,2) != "--") - { - $query .= $sql_line; - if (substr(trim($query), -1, 1) == ";") - { - // this query is finished, execute it - if (@mysql_query($query, $dbh)) - { - $query = ""; - $querycount++; - } - else { - show_error('There was a critical error importing the initial database structure. Please contact support.

Query:

' . $query); - die(); - } - } - } - } - - // update settings - mysql_query('UPDATE `settings` SET `setting_value`=\'' . $this->input->post('site_name') . '\' WHERE `setting_name`=\'site_name\' or `setting_name`=\'email_name\''); - mysql_query('UPDATE `settings` SET `setting_value`=\'' . $this->input->post('site_email') . '\' WHERE `setting_name`=\'site_email\''); + $this->install_model->run_setup_queries(); // send to administrator account setup if (strstr($this->current_url(),'/index')) { @@ -143,18 +108,18 @@ function index() { // which folders/files should be writeable? $file_permissions = array( - str_replace('system/','',BASEPATH) . 'writeable', - APPPATH . 'config', - APPPATH . 'config/config.php' - ); + str_replace('system/','',BASEPATH) . 'writeable', + APPPATH . 'config', + APPPATH . 'config/config.php' + ); $file_permission_errors = array(); foreach ($file_permissions as $file) { if (!is_writable($file)) { $file_permission_errors[] = array( - 'file' => $file, - 'folder' => (is_dir($file)) ? TRUE : FALSE - ); + 'file' => $file, + 'folder' => (is_dir($file)) ? TRUE : FALSE + ); } } @@ -214,6 +179,8 @@ function current_url() { function admin () { $this->load->library('session'); $this->load->helper('url'); + $this->load->library('auto_updater'); + if ($this->input->post('username')) { if ($this->input->post('password') != $this->input->post('password2')) { @@ -275,12 +242,12 @@ function complete () { write_file(APPPATH . 'config/installed.php', '','w'); $vars = array( - 'username' => $this->session->userdata('username'), - 'email' => $this->session->userdata('email'), - 'password' => $this->session->userdata('password'), - 'cron_key' => $this->config->item('cron_key'), - 'cp_link' => site_url('admincp') - ); + 'username' => $this->session->userdata('username'), + 'email' => $this->session->userdata('email'), + 'password' => $this->session->userdata('password'), + 'cron_key' => $this->config->item('cron_key'), + 'cp_link' => site_url('admincp') + ); $this->load->view(branded_view('install/complete.php'), $vars); } diff --git a/app/core/MY_Controller.php b/app/core/MY_Controller.php old mode 100644 new mode 100755 diff --git a/app/core/MY_Input.php b/app/core/MY_Input.php old mode 100644 new mode 100755 diff --git a/app/core/MY_Loader.php b/app/core/MY_Loader.php old mode 100644 new mode 100755 index 3841ea70..38011e66 --- a/app/core/MY_Loader.php +++ b/app/core/MY_Loader.php @@ -14,7 +14,7 @@ function __construct () { * Customized loader methods, which will use define_module * to load the module definition file if necessary. */ - function helper ($helper) { + function helper ($helper = array()) { if (!is_array($helper)) { self::define_module($helper); } @@ -22,7 +22,7 @@ function helper ($helper) { return parent::helper($helper); } - function library ($library, $params = NULL, $object_name = NULL) { + function library ($library = '', $params = NULL, $object_name = NULL) { if (!is_array($library)) { self::define_module($library); } @@ -54,7 +54,7 @@ function plugin ($plugin) { * @param string $path The path to the file being loaded, e.g., "settings/settings_model.php" * */ - function define_module ($path) { + public function define_module ($path) { if (strpos($path, '/') !== FALSE) { // normally, we'd do this in the constructor, but that way left us with // some issues in that module_model was NULL in certain instances @@ -111,4 +111,4 @@ function define_module ($path) { } } } -} \ No newline at end of file +} diff --git a/app/core/MY_Router.php b/app/core/MY_Router.php old mode 100644 new mode 100755 diff --git a/app/errors/error_404.php b/app/errors/error_404.php old mode 100644 new mode 100755 diff --git a/app/errors/error_db.php b/app/errors/error_db.php old mode 100644 new mode 100755 diff --git a/app/errors/error_general.php b/app/errors/error_general.php old mode 100644 new mode 100755 diff --git a/app/errors/error_php.php b/app/errors/error_php.php old mode 100644 new mode 100755 diff --git a/app/errors/index.html b/app/errors/index.html old mode 100644 new mode 100755 diff --git a/app/helpers/MY_url_helper.php b/app/helpers/MY_url_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/admincp/admin_link_helper.php b/app/helpers/admincp/admin_link_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/admincp/dataset_link_helper.php b/app/helpers/admincp/dataset_link_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/admincp/get_notices_helper.php b/app/helpers/admincp/get_notices_helper.php old mode 100644 new mode 100755 index 18d482e2..6f64842f --- a/app/helpers/admincp/get_notices_helper.php +++ b/app/helpers/admincp/get_notices_helper.php @@ -4,17 +4,21 @@ function get_notices () { $CI =& get_instance(); $errors = $CI->notices->GetErrors(); - $notices = $CI->notices->GetNotices(); $return = ''; - while (list(,$error) = each($errors)) { - $return .= '
' . $error . '
'; + $eCount = count($errors); + for($i = 0; $i < $eCount; $i++){ + $return .= '
' . $errors[$i] . '
'; } + unset($eCount); reset($errors); - - while (list(,$notice) = each($notices)) { - $return .= '
' . $notice . '
'; + + $notices = $CI->notices->GetNotices(); + $nCount = count($notices); + for($i = 0; $i < $nCount; $i++){ + $return .= '
' . $notices[$i] . '
'; } + unset($nCount); reset($notices); return $return; diff --git a/app/helpers/admincp/url_string_helper.php b/app/helpers/admincp/url_string_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/array_to_json_helper.php b/app/helpers/array_to_json_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/branding/branded_include_helper.php b/app/helpers/branding/branded_include_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/branding/branded_view_helper.php b/app/helpers/branding/branded_view_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/clean_string_helper.php b/app/helpers/clean_string_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/cron_log_helper.php b/app/helpers/cron_log_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/file_extension_helper.php b/app/helpers/file_extension_helper.php old mode 100644 new mode 100755 index 357a5d9a..a156c463 --- a/app/helpers/file_extension_helper.php +++ b/app/helpers/file_extension_helper.php @@ -13,5 +13,6 @@ * @author Electric Function, Inc. */ function file_extension ($file) { - return strtolower(end(explode(".", $file))); + $exFile = explode('.', $file); + return strtolower(end($exFile)); } \ No newline at end of file diff --git a/app/helpers/filter_directory_helper.php b/app/helpers/filter_directory_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/format_size_helper.php b/app/helpers/format_size_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/format_street_address_helper.php b/app/helpers/format_street_address_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/get_available_image_library_helper.php b/app/helpers/get_available_image_library_helper.php old mode 100644 new mode 100755 index 7fc2be9d..13b8a774 --- a/app/helpers/get_available_image_library_helper.php +++ b/app/helpers/get_available_image_library_helper.php @@ -20,8 +20,7 @@ function get_available_image_library () { if (class_exists('Imagick')) { return 'ImageMagick'; - } - elseif (function_exists('imagecreatetruecolor')) { + } elseif (function_exists('imagecreatetruecolor')) { $gd = gd_info(); // get the pure version number diff --git a/app/helpers/image_thumb_helper.php b/app/helpers/image_thumb_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/index.html b/app/helpers/index.html old mode 100644 new mode 100755 diff --git a/app/helpers/install_redirect_helper.php b/app/helpers/install_redirect_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/local_time_helper.php b/app/helpers/local_time_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/module_installed_helper.php b/app/helpers/module_installed_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/money_format_helper.php b/app/helpers/money_format_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/query_value_helper.php b/app/helpers/query_value_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/setting_helper.php b/app/helpers/setting_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/shorten_helper.php b/app/helpers/shorten_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/ssl_helper.php b/app/helpers/ssl_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/states_helper.php b/app/helpers/states_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/strip_whitespace_helper.php b/app/helpers/strip_whitespace_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/template_files_helper.php b/app/helpers/template_files_helper.php old mode 100644 new mode 100755 index 384dffb9..03ed4325 --- a/app/helpers/template_files_helper.php +++ b/app/helpers/template_files_helper.php @@ -26,8 +26,11 @@ function parse_template_files_array ($files, $return = array(), $prefix = '') { foreach ($files as $key => $file) { - $extension = (!is_array($file) and strpos($file, '.') !== FALSE) ? end(explode('.', $file)) : ''; - + $extension = ''; + if (!is_array($file) and strpos($file, '.') !== FALSE){ + $exFile = explode('.', $file); + $extension = end($exFile); + } if (is_array($file)) { $return = array_merge($return,parse_template_files_array($file, $return, $prefix . $key . '/')); } diff --git a/app/helpers/time_since_helper.php b/app/helpers/time_since_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/unique_email_helper.php b/app/helpers/unique_email_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/unique_username_helper.php b/app/helpers/unique_username_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/valid_domain_helper.php b/app/helpers/valid_domain_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/verify_password_helper.php b/app/helpers/verify_password_helper.php old mode 100644 new mode 100755 diff --git a/app/helpers/xml_value_prep_helper.php b/app/helpers/xml_value_prep_helper.php old mode 100644 new mode 100755 diff --git a/app/hooks/index.html b/app/hooks/index.html old mode 100644 new mode 100755 diff --git a/app/index.html b/app/index.html old mode 100644 new mode 100755 diff --git a/app/language/english/control_panel_lang.php b/app/language/english/control_panel_lang.php old mode 100644 new mode 100755 diff --git a/app/language/english/index.html b/app/language/english/index.html old mode 100644 new mode 100755 diff --git a/app/libraries/MY_Cart.php b/app/libraries/MY_Cart.php old mode 100644 new mode 100755 diff --git a/app/libraries/MY_Email.php b/app/libraries/MY_Email.php old mode 100644 new mode 100755 index 85e31dec..a6a9db2e --- a/app/libraries/MY_Email.php +++ b/app/libraries/MY_Email.php @@ -35,7 +35,7 @@ function message ($message) { parent::message($message); } - function from ($from_email, $from_name) { + function from ($from_email, $from_name='') { $this->_plaintext_from_name = $from_name; $this->_plaintext_from_email = $from_email; diff --git a/app/libraries/MY_Upload.php b/app/libraries/MY_Upload.php old mode 100644 new mode 100755 diff --git a/app/libraries/admin_form.php b/app/libraries/admin_form.php old mode 100644 new mode 100755 index 9f0c2d55..cd555f5f --- a/app/libraries/admin_form.php +++ b/app/libraries/admin_form.php @@ -414,7 +414,7 @@ function custom_fields ($custom_fields = array(), $values = array(), $no_default foreach ($custom_fields as $field) { $CI->load->library('custom_fields/fieldtype'); - $field_object =& $CI->fieldtype->load($field); + $field_object = $CI->fieldtype->load($field); // set value if (!empty($values) and isset($values[$field_object->name])) { diff --git a/app/libraries/admin_navigation.php b/app/libraries/admin_navigation.php old mode 100644 new mode 100755 diff --git a/app/libraries/app_hooks.php b/app/libraries/app_hooks.php old mode 100644 new mode 100755 diff --git a/app/libraries/array_to_csv.php b/app/libraries/array_to_csv.php old mode 100644 new mode 100755 diff --git a/app/libraries/array_to_xml.php b/app/libraries/array_to_xml.php old mode 100644 new mode 100755 diff --git a/app/libraries/asciihex.php b/app/libraries/asciihex.php old mode 100644 new mode 100755 diff --git a/app/libraries/auto_updater.php b/app/libraries/auto_updater.php old mode 100644 new mode 100755 index feeeed36..4b839ded --- a/app/libraries/auto_updater.php +++ b/app/libraries/auto_updater.php @@ -12,7 +12,8 @@ */ class Auto_updater { - function Auto_updater () { + + function __construct(){ $CI =& get_instance(); $software_version = $CI->config->item('app_version'); diff --git a/app/libraries/controllers/Admincp_Controller.php b/app/libraries/controllers/Admincp_Controller.php old mode 100644 new mode 100755 index eb42bb2f..c4f9de51 --- a/app/libraries/controllers/Admincp_Controller.php +++ b/app/libraries/controllers/Admincp_Controller.php @@ -78,7 +78,8 @@ function __construct () { $this->module_definitions = new stdClass(); foreach ($modules as $module) { - MY_Loader::define_module($module . '/'); + $myloader = new MY_Loader(); + $myloader->define_module($module . '/'); } // define WYSIWYG session variables for file uploading diff --git a/app/libraries/controllers/Front_Controller.php b/app/libraries/controllers/Front_Controller.php old mode 100644 new mode 100755 index 29839376..b52fafa9 --- a/app/libraries/controllers/Front_Controller.php +++ b/app/libraries/controllers/Front_Controller.php @@ -40,7 +40,8 @@ function __construct () { $this->module_definitions = new stdClass(); foreach ($modules as $module) { - MY_Loader::define_module($module . '/'); + $myloader = new MY_Loader(); + $myloader->define_module($module . '/'); } // load caching for the frontend diff --git a/app/libraries/dataset.php b/app/libraries/dataset.php old mode 100644 new mode 100755 index 59c5d9a6..97161a46 --- a/app/libraries/dataset.php +++ b/app/libraries/dataset.php @@ -517,8 +517,8 @@ function table_head () { // build action buttons if (!empty($this->actions)) { - $actions .= 'With selected: '; - while (list(,$action) = each($this->actions)) { + $actions .= 'With selected: '; + foreach($this->actions as $action){ $actions .= ' '; $i++; } @@ -540,7 +540,7 @@ function table_head () { } // add column headers - while (list($key,$column) = each($this->columns)) { + foreach ($this->columns as $key => $column) { if (isset($column['sort_column']) and !empty($column['sort_column'])) { if ($this->sort_column == $column['sort_column'] and $this->sort_dir == 'asc') { $direction = 'desc'; @@ -578,7 +578,7 @@ function table_head () { $output .= ''; } - while (list(,$column) = each($this->columns)) { + foreach($this->columns as $idx => $column) { if ($column['filters'] == TRUE) { $output .= ''; diff --git a/app/libraries/field_validation.php b/app/libraries/field_validation.php old mode 100644 new mode 100755 diff --git a/app/libraries/head_assets.php b/app/libraries/head_assets.php old mode 100644 new mode 100755 diff --git a/app/libraries/head_compile.php b/app/libraries/head_compile.php old mode 100644 new mode 100755 diff --git a/app/libraries/image_gallery_form.php b/app/libraries/image_gallery_form.php old mode 100644 new mode 100755 diff --git a/app/libraries/index.html b/app/libraries/index.html old mode 100644 new mode 100755 diff --git a/app/libraries/inflect.php b/app/libraries/inflect.php old mode 100644 new mode 100755 diff --git a/app/libraries/jsmin.php b/app/libraries/jsmin.php old mode 100644 new mode 100755 diff --git a/app/libraries/key.php b/app/libraries/key.php old mode 100644 new mode 100755 diff --git a/app/libraries/module.php b/app/libraries/module.php old mode 100644 new mode 100755 diff --git a/app/libraries/notices.php b/app/libraries/notices.php old mode 100644 new mode 100755 diff --git a/app/libraries/response.php b/app/libraries/response.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty.php b/app/libraries/smarty.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/Smarty.class.php b/app/libraries/smarty/Smarty.class.php old mode 100644 new mode 100755 index 75c90ffc..a2467f26 --- a/app/libraries/smarty/Smarty.class.php +++ b/app/libraries/smarty/Smarty.class.php @@ -733,7 +733,9 @@ public function __call($name, $args) { static $camel_func; if (!isset($camel_func)) - $camel_func = create_function('$c', 'return "_" . strtolower($c[1]);'); + $camel_func = function($c) { + return "_" . strtolower( $c[1] ); + }; // see if this is a set/get for a property $first3 = strtolower(substr($name, 0, 3)); if (in_array($first3, array('set', 'get')) && substr($name, 3, 1) !== '_') { diff --git a/app/libraries/smarty/plugins/block.php.php b/app/libraries/smarty/plugins/block.php.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/block.textformat.php b/app/libraries/smarty/plugins/block.textformat.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.counter.php b/app/libraries/smarty/plugins/function.counter.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.cycle.php b/app/libraries/smarty/plugins/function.cycle.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.fetch.php b/app/libraries/smarty/plugins/function.fetch.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.html_checkboxes.php b/app/libraries/smarty/plugins/function.html_checkboxes.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.html_image.php b/app/libraries/smarty/plugins/function.html_image.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.html_options.php b/app/libraries/smarty/plugins/function.html_options.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.html_radios.php b/app/libraries/smarty/plugins/function.html_radios.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.html_select_date.php b/app/libraries/smarty/plugins/function.html_select_date.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.html_select_time.php b/app/libraries/smarty/plugins/function.html_select_time.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.html_table.php b/app/libraries/smarty/plugins/function.html_table.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.mailto.php b/app/libraries/smarty/plugins/function.mailto.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.math.php b/app/libraries/smarty/plugins/function.math.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.popup.php b/app/libraries/smarty/plugins/function.popup.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/function.popup_init.php b/app/libraries/smarty/plugins/function.popup_init.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.capitalize.php b/app/libraries/smarty/plugins/modifier.capitalize.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.date_format.php b/app/libraries/smarty/plugins/modifier.date_format.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.debug_print_var.php b/app/libraries/smarty/plugins/modifier.debug_print_var.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.escape.php b/app/libraries/smarty/plugins/modifier.escape.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.regex_replace.php b/app/libraries/smarty/plugins/modifier.regex_replace.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.replace.php b/app/libraries/smarty/plugins/modifier.replace.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.spacify.php b/app/libraries/smarty/plugins/modifier.spacify.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifier.truncate.php b/app/libraries/smarty/plugins/modifier.truncate.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.cat.php b/app/libraries/smarty/plugins/modifiercompiler.cat.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_characters.php b/app/libraries/smarty/plugins/modifiercompiler.count_characters.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_paragraphs.php b/app/libraries/smarty/plugins/modifiercompiler.count_paragraphs.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_sentences.php b/app/libraries/smarty/plugins/modifiercompiler.count_sentences.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_words.php b/app/libraries/smarty/plugins/modifiercompiler.count_words.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.default.php b/app/libraries/smarty/plugins/modifiercompiler.default.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.indent.php b/app/libraries/smarty/plugins/modifiercompiler.indent.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.lower.php b/app/libraries/smarty/plugins/modifiercompiler.lower.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.noprint.php b/app/libraries/smarty/plugins/modifiercompiler.noprint.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.string_format.php b/app/libraries/smarty/plugins/modifiercompiler.string_format.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.strip.php b/app/libraries/smarty/plugins/modifiercompiler.strip.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.strip_tags.php b/app/libraries/smarty/plugins/modifiercompiler.strip_tags.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.upper.php b/app/libraries/smarty/plugins/modifiercompiler.upper.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/modifiercompiler.wordwrap.php b/app/libraries/smarty/plugins/modifiercompiler.wordwrap.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/outputfilter.trimwhitespace.php b/app/libraries/smarty/plugins/outputfilter.trimwhitespace.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/shared.escape_special_chars.php b/app/libraries/smarty/plugins/shared.escape_special_chars.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/shared.make_timestamp.php b/app/libraries/smarty/plugins/shared.make_timestamp.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/plugins/variablefilter.htmlspecialchars.php b/app/libraries/smarty/plugins/variablefilter.htmlspecialchars.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_cacheresource_file.php b/app/libraries/smarty/sysplugins/smarty_internal_cacheresource_file.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_append.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_append.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_assign.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_assign.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_block.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_block.php old mode 100644 new mode 100755 index b1b64374..6eb78c14 --- a/app/libraries/smarty/sysplugins/smarty_internal_compile_block.php +++ b/app/libraries/smarty/sysplugins/smarty_internal_compile_block.php @@ -88,7 +88,7 @@ static function saveBlockData($block_content, $block_tag, $template, $filepath) } } - static function compileChildBlock ($compiler, $_name = null) + public function compileChildBlock ($compiler, $_name = null) { $_output = ''; // if called by {$smarty.block.child} we must search the name of enclosing {block} @@ -169,7 +169,8 @@ public function compile($args, $compiler) $saved_data = $this->_close_tag(array('block')); $_name = trim($saved_data[0]['name'], "\"'"); if (isset($compiler->template->block_data[$_name]) && !isset($compiler->template->block_data[$_name]['compiled'])) { - $_output = Smarty_Internal_Compile_Block::compileChildBlock($compiler, $_name); + $sicb = new Smarty_Internal_Compile_Block(); + $_output = $sicb->compileChildBlock($compiler, $_name); } else { $_output = $compiler->parser->current_buffer->to_smarty_php(); unset ($compiler->template->block_data[$_name]['compiled']); diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_break.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_break.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_call.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_call.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_capture.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_capture.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_config_load.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_config_load.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_continue.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_continue.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_debug.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_debug.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_eval.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_eval.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_extends.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_extends.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_for.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_for.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_foreach.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_foreach.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_function.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_if.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_if.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_include.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_include.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_include_php.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_include_php.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_insert.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_insert.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_ldelim.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_ldelim.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_nocache.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_nocache.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_modifier.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_modifier.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_function.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_print_expression.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_print_expression.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_block.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_block.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_function.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_special_variable.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_special_variable.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_rdelim.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_rdelim.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_section.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_section.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_while.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_while.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compilebase.php b/app/libraries/smarty/sysplugins/smarty_internal_compilebase.php old mode 100644 new mode 100755 index 6418acce..0b639bee --- a/app/libraries/smarty/sysplugins/smarty_internal_compilebase.php +++ b/app/libraries/smarty/sysplugins/smarty_internal_compilebase.php @@ -49,31 +49,32 @@ function _get_attributes ($attributes) } // named attribute } else { - $kv = each($mixed); - // option flag? - if (in_array($kv['key'], $this->option_flags)) { - if (is_bool($kv['value'])) { - $_indexed_attr[$kv['key']] = $kv['value']; - } else if (is_string($kv['value']) && in_array(trim($kv['value'], '\'"'), array('true', 'false'))) { - if (trim($kv['value']) == 'true') { - $_indexed_attr[$kv['key']] = true; + foreach($mixed as $key => $value){ + // option flag? + if (in_array($key, $this->option_flags)) { + if (is_bool($value)) { + $_indexed_attr[$key] = $value; + } else if (is_string($value) && in_array(trim($value, '\'"'), array('true', 'false'))) { + if (trim($value) == 'true') { + $_indexed_attr[$key] = true; + } else { + $_indexed_attr[$key] = false; + } + } else if (is_numeric($value) && in_array($value, array(0, 1))) { + if ($value == 1) { + $_indexed_attr[$key] = true; + } else { + $_indexed_attr[$key] = false; + } } else { - $_indexed_attr[$kv['key']] = false; - } - } else if (is_numeric($kv['value']) && in_array($kv['value'], array(0, 1))) { - if ($kv['value'] == 1) { - $_indexed_attr[$kv['key']] = true; - } else { - $_indexed_attr[$kv['key']] = false; + $this->compiler->trigger_template_error("illegal value of option flag \"{$key}\"", $this->compiler->lex->taglineno); } + // must be named attribute } else { - $this->compiler->trigger_template_error("illegal value of option flag \"{$kv['key']}\"", $this->compiler->lex->taglineno); + reset($mixed); + $_indexed_attr[key($mixed)] = $mixed[key($mixed)]; } - // must be named attribute - } else { - reset($mixed); - $_indexed_attr[key($mixed)] = $mixed[key($mixed)]; - } + } } } // check if all required attributes present diff --git a/app/libraries/smarty/sysplugins/smarty_internal_config.php b/app/libraries/smarty/sysplugins/smarty_internal_config.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_config_file_compiler.php b/app/libraries/smarty/sysplugins/smarty_internal_config_file_compiler.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_configfilelexer.php b/app/libraries/smarty/sysplugins/smarty_internal_configfilelexer.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_configfileparser.php b/app/libraries/smarty/sysplugins/smarty_internal_configfileparser.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_data.php b/app/libraries/smarty/sysplugins/smarty_internal_data.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_debug.php b/app/libraries/smarty/sysplugins/smarty_internal_debug.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_filter.php b/app/libraries/smarty/sysplugins/smarty_internal_filter.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_filter_handler.php b/app/libraries/smarty/sysplugins/smarty_internal_filter_handler.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_function_call_handler.php b/app/libraries/smarty/sysplugins/smarty_internal_function_call_handler.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_nocache_insert.php b/app/libraries/smarty/sysplugins/smarty_internal_nocache_insert.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_parsetree.php b/app/libraries/smarty/sysplugins/smarty_internal_parsetree.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_register.php b/app/libraries/smarty/sysplugins/smarty_internal_register.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_eval.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_eval.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_extends.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_extends.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_file.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_file.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_php.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_php.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_registered.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_registered.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_stream.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_stream.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_string.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_string.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php b/app/libraries/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_template.php b/app/libraries/smarty/sysplugins/smarty_internal_template.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_templatecompilerbase.php b/app/libraries/smarty/sysplugins/smarty_internal_templatecompilerbase.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_templatelexer.php b/app/libraries/smarty/sysplugins/smarty_internal_templatelexer.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_templateparser.php b/app/libraries/smarty/sysplugins/smarty_internal_templateparser.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_utility.php b/app/libraries/smarty/sysplugins/smarty_internal_utility.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_wrapper.php b/app/libraries/smarty/sysplugins/smarty_internal_wrapper.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_write_file.php b/app/libraries/smarty/sysplugins/smarty_internal_write_file.php old mode 100644 new mode 100755 diff --git a/app/libraries/smarty/sysplugins/smarty_security.php b/app/libraries/smarty/sysplugins/smarty_security.php old mode 100644 new mode 100755 diff --git a/app/libraries/stats.php b/app/libraries/stats.php old mode 100644 new mode 100755 diff --git a/app/models/admincp/notices.php b/app/models/admincp/notices.php old mode 100644 new mode 100755 index b2d93f4b..c5745204 --- a/app/models/admincp/notices.php +++ b/app/models/admincp/notices.php @@ -11,7 +11,7 @@ */ class Notices extends CI_Model { - function Notices() { + function __construct() { parent::__construct(); } diff --git a/app/models/custom_fields_model.php b/app/models/custom_fields_model.php old mode 100644 new mode 100755 diff --git a/app/models/index.html b/app/models/index.html old mode 100644 new mode 100755 diff --git a/app/models/install_model.php b/app/models/install_model.php new file mode 100755 index 00000000..b0e40dff --- /dev/null +++ b/app/models/install_model.php @@ -0,0 +1,88 @@ +config = array( + 'hostname' => $this->input->post('db_host'), + 'username' => $this->input->post('db_user'), + 'password' => $this->input->post('db_pass'), + 'database' => $this->input->post('db_name'), + 'dbdriver' => "mysqli", + 'dbprefix' => "", + 'pconnect' => FALSE, + 'db_debug' => TRUE, + 'cache_on' => FALSE, + 'cachedir' => "", + 'char_set' => "utf8", + 'dbcollat' => "utf8_general_ci" + ); + $this->installdb = $this->load->database($this->config); + if ($this->installdb) { + $valid_mysql = TRUE; + } + return $valid_mysql; + } + + function run_setup_queries() + { + $structure = read_file(APPPATH . 'updates/install.php'); + $structure = str_replace('','',$structure); + + // break into newlines + $structure = explode("\n",$structure); + + // run mysql queries + $query = ""; + $querycount = 0; + + foreach ($structure as $sql_line) + { + if (trim($sql_line) != "" and substr($sql_line,0,2) != "--") + { + $query .= $sql_line; + if (substr(trim($query), -1, 1) == ";") + { + // this query is finished, execute it + if ($this->installdb->query($query)) { + $query = ""; + $querycount++; + } else { + show_error('There was a critical error importing the initial database structure. Please contact support.

Query:

' . $query); + die(); + } + } + } + } + // update settings + $this->installdb->query( + 'UPDATE `settings` SET `setting_value`="' + . $this->input->post('site_name') + . '" WHERE `setting_name`="site_name" or `setting_name`="email_name"' + ); + $this->installdb->query( + 'UPDATE `settings` SET `setting_value`="' + . $this->input->post('site_email') + . '" WHERE `setting_name`="site_email"' + ); + } +} \ No newline at end of file diff --git a/app/models/link_model.php b/app/models/link_model.php old mode 100644 new mode 100755 diff --git a/app/models/states_model.php b/app/models/states_model.php old mode 100644 new mode 100755 diff --git a/app/modules/blogs/blogs.php b/app/modules/blogs/blogs.php old mode 100644 new mode 100755 index 1c50d193..b11a3b47 --- a/app/modules/blogs/blogs.php +++ b/app/modules/blogs/blogs.php @@ -56,7 +56,7 @@ function update ($db_version) { `blog_template` varchar(255) NOT NULL, `blog_per_page` int(11) NOT NULL, PRIMARY KEY (`blog_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } return $this->version; diff --git a/app/modules/blogs/controllers/admincp.php b/app/modules/blogs/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/blogs/controllers/blog.php b/app/modules/blogs/controllers/blog.php old mode 100644 new mode 100755 diff --git a/app/modules/blogs/models/blog_model.php b/app/modules/blogs/models/blog_model.php old mode 100644 new mode 100755 diff --git a/app/modules/blogs/views/blog_form.php b/app/modules/blogs/views/blog_form.php old mode 100644 new mode 100755 diff --git a/app/modules/blogs/views/blogs.php b/app/modules/blogs/views/blogs.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/controllers/admincp.php b/app/modules/custom_fields/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/custom_fields.php b/app/modules/custom_fields/custom_fields.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtype.php b/app/modules/custom_fields/libraries/fieldtype.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/checkbox.php b/app/modules/custom_fields/libraries/fieldtypes/checkbox.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/date.php b/app/modules/custom_fields/libraries/fieldtypes/date.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/datetime.php b/app/modules/custom_fields/libraries/fieldtypes/datetime.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/file_upload.php b/app/modules/custom_fields/libraries/fieldtypes/file_upload.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/member_group_relationship.php b/app/modules/custom_fields/libraries/fieldtypes/member_group_relationship.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/multicheckbox.php b/app/modules/custom_fields/libraries/fieldtypes/multicheckbox.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/multiselect.php b/app/modules/custom_fields/libraries/fieldtypes/multiselect.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/radio.php b/app/modules/custom_fields/libraries/fieldtypes/radio.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/relationship.php b/app/modules/custom_fields/libraries/fieldtypes/relationship.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/select.php b/app/modules/custom_fields/libraries/fieldtypes/select.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/subscription_relationship.php b/app/modules/custom_fields/libraries/fieldtypes/subscription_relationship.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/text.php b/app/modules/custom_fields/libraries/fieldtypes/text.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/textarea.php b/app/modules/custom_fields/libraries/fieldtypes/textarea.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/topic_relationship.php b/app/modules/custom_fields/libraries/fieldtypes/topic_relationship.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/fieldtypes/wysiwyg.php b/app/modules/custom_fields/libraries/fieldtypes/wysiwyg.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/libraries/form_builder.php b/app/modules/custom_fields/libraries/form_builder.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/template_plugins/function.custom_field.php b/app/modules/custom_fields/template_plugins/function.custom_field.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/views/arrange_fields.php b/app/modules/custom_fields/views/arrange_fields.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/views/custom_fields.php b/app/modules/custom_fields/views/custom_fields.php old mode 100644 new mode 100755 diff --git a/app/modules/custom_fields/views/field_form.php b/app/modules/custom_fields/views/field_form.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/controllers/admincp.php b/app/modules/emails/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/emails.php b/app/modules/emails/emails.php old mode 100644 new mode 100755 index a4ef348b..5543ff30 --- a/app/modules/emails/emails.php +++ b/app/modules/emails/emails.php @@ -54,7 +54,7 @@ function update ($db_version) { `email_is_html` tinyint(1) NOT NULL, `email_deleted` tinyint(0) NOT NULL, PRIMARY KEY (`email_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } if ($db_version < 1.04) { @@ -95,7 +95,7 @@ function update ($db_version) { `wordwrap` TINYINT(1) NOT NULL, `is_html` TINYINT(1) NOT NULL, PRIMARY KEY (`mail_queue_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); $this->CI->load->library('app_hooks'); @@ -119,7 +119,7 @@ function update ($db_version) { `email_template_body` text NOT NULL, `email_template_is_html` tinyint(1) NOT NULL, PRIMARY KEY (`email_template_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } if ($db_version < 1.09) { @@ -139,12 +139,11 @@ function update ($db_version) { */ function _email_import($import) { $this->CI->load->helper('file'); - + //var_dump($import); foreach ($import as $hook => $details) { $subject = $details['subject']; $to = $details['to']; $bcc = isset($details['bcc']) ? $details['bcc'] : array(); - if (file_exists(APPPATH . 'modules/emails/template_import/' . $hook . '.thtml')) { $insert_fields = array( 'hook_name' => $hook, @@ -152,7 +151,9 @@ function _email_import($import) { 'email_subject' => $subject, 'email_recipients' => serialize($to), 'email_bccs' => serialize($bcc), - 'email_is_html' => '1' + 'email_is_html' => '1', + 'email_body_template' => APPPATH . 'modules/emails/template_import/' . $hook . '.thtml', + 'email_deleted' => 0 ); $this->CI->db->insert('emails', $insert_fields); diff --git a/app/modules/emails/models/email_model.php b/app/modules/emails/models/email_model.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/models/email_template_model.php b/app/modules/emails/models/email_template_model.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/email_layout.thtml b/app/modules/emails/template_import/email_layout.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/member_forgot_password.thtml b/app/modules/emails/template_import/member_forgot_password.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/member_register.thtml b/app/modules/emails/template_import/member_register.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/member_validate_email.thtml b/app/modules/emails/template_import/member_validate_email.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/store_order.thtml b/app/modules/emails/template_import/store_order.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/store_order_product_downloadable.thtml b/app/modules/emails/template_import/store_order_product_downloadable.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/subscription_charge.thtml b/app/modules/emails/template_import/subscription_charge.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/template_import/subscription_expire.thtml b/app/modules/emails/template_import/subscription_expire.thtml old mode 100644 new mode 100755 diff --git a/app/modules/emails/views/email_form.php b/app/modules/emails/views/email_form.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/views/email_layout.php b/app/modules/emails/views/email_layout.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/views/emails.php b/app/modules/emails/views/emails.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/views/select_hook.php b/app/modules/emails/views/select_hook.php old mode 100644 new mode 100755 diff --git a/app/modules/emails/views/send.php b/app/modules/emails/views/send.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/controllers/admincp.php b/app/modules/forms/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/controllers/form.php b/app/modules/forms/controllers/form.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/forms.php b/app/modules/forms/forms.php old mode 100644 new mode 100755 index b1d4f314..fec7edfc --- a/app/modules/forms/forms.php +++ b/app/modules/forms/forms.php @@ -64,7 +64,7 @@ function update ($db_version) { `form_privileges` varchar(250) NOT NULL, `form_template` varchar(100) NOT NULL, PRIMARY KEY (`form_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } // return current version diff --git a/app/modules/forms/models/form_model.php b/app/modules/forms/models/form_model.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/template_plugins/block.form.php b/app/modules/forms/template_plugins/block.form.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/views/fields.php b/app/modules/forms/views/fields.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/views/form.php b/app/modules/forms/views/form.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/views/forms.php b/app/modules/forms/views/forms.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/views/response.php b/app/modules/forms/views/response.php old mode 100644 new mode 100755 diff --git a/app/modules/forms/views/responses.php b/app/modules/forms/views/responses.php old mode 100644 new mode 100755 diff --git a/app/modules/googleanalytics/controllers/admincp.php b/app/modules/googleanalytics/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/googleanalytics/googleanalytics.php b/app/modules/googleanalytics/googleanalytics.php old mode 100644 new mode 100755 diff --git a/app/modules/googleanalytics/template_plugins/outputfilter.googleanalytics.php b/app/modules/googleanalytics/template_plugins/outputfilter.googleanalytics.php old mode 100644 new mode 100755 diff --git a/app/modules/googleanalytics/views/generic.php b/app/modules/googleanalytics/views/generic.php old mode 100644 new mode 100755 diff --git a/app/modules/import/controllers/admincp.php b/app/modules/import/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/import/import.php b/app/modules/import/import.php old mode 100644 new mode 100755 diff --git a/app/modules/import/views/fields.php b/app/modules/import/views/fields.php old mode 100644 new mode 100755 diff --git a/app/modules/import/views/index.php b/app/modules/import/views/index.php old mode 100644 new mode 100755 diff --git a/app/modules/import/views/results.php b/app/modules/import/views/results.php old mode 100644 new mode 100755 diff --git a/app/modules/menu_manager/controllers/admincp.php b/app/modules/menu_manager/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/menu_manager/menu_manager.php b/app/modules/menu_manager/menu_manager.php old mode 100644 new mode 100755 index 37f27335..d17b9f4f --- a/app/modules/menu_manager/menu_manager.php +++ b/app/modules/menu_manager/menu_manager.php @@ -56,13 +56,13 @@ function update ($db_version) { `menu_link_privileges` varchar(255), `menu_link_order` int(5), PRIMARY KEY (`menu_link_id`) - ) ENGINE=MyISAM AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); $this->CI->db->query('CREATE TABLE `menus` ( `menu_id` int(11) NOT NULL auto_increment, `menu_name` varchar(200) NOT NULL, PRIMARY KEY (`menu_id`) - ) ENGINE=MyISAM AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb AUTO_INCREMENT=1000 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } if ($db_version < 1.02) { diff --git a/app/modules/menu_manager/models/menu_model.php b/app/modules/menu_manager/models/menu_model.php old mode 100644 new mode 100755 diff --git a/app/modules/menu_manager/template_plugins/function.menu.php b/app/modules/menu_manager/template_plugins/function.menu.php old mode 100644 new mode 100755 diff --git a/app/modules/menu_manager/views/links.php b/app/modules/menu_manager/views/links.php old mode 100644 new mode 100755 diff --git a/app/modules/menu_manager/views/menu_form.php b/app/modules/menu_manager/views/menu_form.php old mode 100644 new mode 100755 diff --git a/app/modules/menu_manager/views/menu_manager.php b/app/modules/menu_manager/views/menu_manager.php old mode 100644 new mode 100755 diff --git a/app/modules/menu_manager/views/possible_links.php b/app/modules/menu_manager/views/possible_links.php old mode 100644 new mode 100755 diff --git a/app/modules/modules/models/module_model.php b/app/modules/modules/models/module_model.php old mode 100644 new mode 100755 index c4a63082..2418594d --- a/app/modules/modules/models/module_model.php +++ b/app/modules/modules/models/module_model.php @@ -21,6 +21,8 @@ function __construct() { // pre-cache modules table $result = $this->db->get('modules'); + + //var_dump($result); $this->modules_cache = array(); diff --git a/app/modules/paywall/controllers/admincp.php b/app/modules/paywall/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/paywall/controllers/protected_link.php b/app/modules/paywall/controllers/protected_link.php old mode 100644 new mode 100755 diff --git a/app/modules/paywall/helpers/paywall_helper.php b/app/modules/paywall/helpers/paywall_helper.php old mode 100644 new mode 100755 diff --git a/app/modules/paywall/paywall.php b/app/modules/paywall/paywall.php old mode 100644 new mode 100755 diff --git a/app/modules/paywall/template_plugins/function.protected_link.php b/app/modules/paywall/template_plugins/function.protected_link.php old mode 100644 new mode 100755 diff --git a/app/modules/paywall/views/paywall_configuration.php b/app/modules/paywall/views/paywall_configuration.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/controllers/admincp.php b/app/modules/publish/controllers/admincp.php old mode 100644 new mode 100755 index 292944f9..51ac6f20 --- a/app/modules/publish/controllers/admincp.php +++ b/app/modules/publish/controllers/admincp.php @@ -480,6 +480,7 @@ function edit ($id) { $this->load->library('admin_form'); + if ($type['is_standard'] == TRUE) { // we require Title, URL Path, and Topic fields diff --git a/app/modules/publish/controllers/content.php b/app/modules/publish/controllers/content.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/models/content_model.php b/app/modules/publish/models/content_model.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/models/content_type_model.php b/app/modules/publish/models/content_type_model.php old mode 100644 new mode 100755 index 1572c3f1..6af02d4a --- a/app/modules/publish/models/content_type_model.php +++ b/app/modules/publish/models/content_type_model.php @@ -101,7 +101,7 @@ function new_content_type ($name, $is_standard = TRUE, $is_privileged = FALSE, $ `{$system_name}_id` INT(11) AUTO_INCREMENT PRIMARY KEY, `content_id` INT(11) NOT NULL, INDEX ( `content_id` ) - ) ENGINE = MYISAM"; + ) ENGINE = Innodb"; $this->db->query($sql); } diff --git a/app/modules/publish/models/topic_model.php b/app/modules/publish/models/topic_model.php old mode 100644 new mode 100755 index 3a4fc96b..099b1e3a --- a/app/modules/publish/models/topic_model.php +++ b/app/modules/publish/models/topic_model.php @@ -203,7 +203,7 @@ function make_tiers($terms, &$tiers, $index=0, $names='') { if (is_array($terms[$index])) { - while(list($id, $name) = each($terms[$index])) + foreach($terms[$index] as $id => $name) { if ($index == 0) { diff --git a/app/modules/publish/publish.php b/app/modules/publish/publish.php old mode 100644 new mode 100755 index 5d5f90ce..9a15dc37 --- a/app/modules/publish/publish.php +++ b/app/modules/publish/publish.php @@ -80,7 +80,7 @@ function update ($db_version) { `content_type_system_name` varchar(50) NOT NULL, `content_type_template` varchar(255) NOT NULL, PRIMARY KEY (`content_type_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } if ($db_version < 1.03) { @@ -89,7 +89,7 @@ function update ($db_version) { `topic_id` int(11) NOT NULL, `content_id` int(11) NOT NULL, PRIMARY KEY (`topic_map_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); $this->CI->db->query('CREATE TABLE IF NOT EXISTS `topics` ( `topic_id` int(11) NOT NULL auto_increment, @@ -98,7 +98,7 @@ function update ($db_version) { `topic_description` text NOT NULL, `topic_deleted` tinyint(1) NOT NULL, PRIMARY KEY (`topic_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000 ;'); } if ($db_version < 1.09) { @@ -117,7 +117,7 @@ function update ($db_version) { `content_privileges` varchar(255), `content_hits` int(11), PRIMARY KEY (`content_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } if ($db_version < 1.10) { diff --git a/app/modules/publish/template_plugins/block.content.php b/app/modules/publish/template_plugins/block.content.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/template_plugins/block.content_in_topic.php b/app/modules/publish/template_plugins/block.content_in_topic.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/template_plugins/block.topics.php b/app/modules/publish/template_plugins/block.topics.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/content.php b/app/modules/publish/views/content.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/content_non_standard.php b/app/modules/publish/views/content_non_standard.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/content_standard.php b/app/modules/publish/views/content_standard.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/content_types.php b/app/modules/publish/views/content_types.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/create_post.php b/app/modules/publish/views/create_post.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/create_type.php b/app/modules/publish/views/create_type.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/topic_form.php b/app/modules/publish/views/topic_form.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/topics.php b/app/modules/publish/views/topics.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/type_fields.php b/app/modules/publish/views/type_fields.php old mode 100644 new mode 100755 diff --git a/app/modules/publish/views/type_form.php b/app/modules/publish/views/type_form.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/controllers/admincp.php b/app/modules/reports/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/reports.php b/app/modules/reports/reports.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/cancellations.php b/app/modules/reports/views/cancellations.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/coupons.php b/app/modules/reports/views/coupons.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/cronjob.php b/app/modules/reports/views/cronjob.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/expirations.php b/app/modules/reports/views/expirations.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/invoice.php b/app/modules/reports/views/invoice.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/invoices.php b/app/modules/reports/views/invoices.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/mark_refund.php b/app/modules/reports/views/mark_refund.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/popular.php b/app/modules/reports/views/popular.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/products.php b/app/modules/reports/views/products.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/registrations.php b/app/modules/reports/views/registrations.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/subscriptions.php b/app/modules/reports/views/subscriptions.php old mode 100644 new mode 100755 diff --git a/app/modules/reports/views/taxes.php b/app/modules/reports/views/taxes.php old mode 100644 new mode 100755 diff --git a/app/modules/rss/controllers/admincp.php b/app/modules/rss/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/rss/controllers/feed.php b/app/modules/rss/controllers/feed.php old mode 100644 new mode 100755 diff --git a/app/modules/rss/models/rss_model.php b/app/modules/rss/models/rss_model.php old mode 100644 new mode 100755 diff --git a/app/modules/rss/rss.php b/app/modules/rss/rss.php old mode 100644 new mode 100755 index 24e9bb07..6ff46b94 --- a/app/modules/rss/rss.php +++ b/app/modules/rss/rss.php @@ -51,7 +51,7 @@ function update ($db_version) { `rss_sort_dir` varchar(5) NOT NULL, `rss_template` varchar(150) NOT NULL, PRIMARY KEY (`rss_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } return $this->version; diff --git a/app/modules/rss/views/feed_form.php b/app/modules/rss/views/feed_form.php old mode 100644 new mode 100755 diff --git a/app/modules/rss/views/rss_feeds.php b/app/modules/rss/views/rss_feeds.php old mode 100644 new mode 100755 diff --git a/app/modules/search/controllers/admincp.php b/app/modules/search/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/search/controllers/search.php b/app/modules/search/controllers/search.php old mode 100644 new mode 100755 diff --git a/app/modules/search/libraries/search_results.php b/app/modules/search/libraries/search_results.php old mode 100644 new mode 100755 diff --git a/app/modules/search/search.php b/app/modules/search/search.php old mode 100644 new mode 100755 diff --git a/app/modules/search/views/search_configuration.php b/app/modules/search/views/search_configuration.php old mode 100644 new mode 100755 diff --git a/app/modules/settings/controllers/admincp.php b/app/modules/settings/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/settings/models/settings_model.php b/app/modules/settings/models/settings_model.php old mode 100644 new mode 100755 diff --git a/app/modules/settings/settings.php b/app/modules/settings/settings.php old mode 100644 new mode 100755 diff --git a/app/modules/settings/views/module_uninstall_confirm.php b/app/modules/settings/views/module_uninstall_confirm.php old mode 100644 new mode 100755 diff --git a/app/modules/settings/views/modules.php b/app/modules/settings/views/modules.php old mode 100644 new mode 100755 diff --git a/app/modules/settings/views/settings.php b/app/modules/settings/views/settings.php old mode 100644 new mode 100755 diff --git a/app/modules/theme/controllers/admincp.php b/app/modules/theme/controllers/admincp.php old mode 100644 new mode 100755 index e6f2bbb6..4f3b319d --- a/app/modules/theme/controllers/admincp.php +++ b/app/modules/theme/controllers/admincp.php @@ -255,12 +255,13 @@ function save_file () { } // you can only write certain filetypes - $extension = end(explode('.',$path)); + $exPath = explode('.', $path); + $extension = end($exPath); if (!in_array($extension, array('html','thtml','txml','trss','xml','rss','js','css'))) { return FALSE; } - - if (file_exists($path) and !is_really_writable($path)) { + + if (file_exists($path) and !is_writable($path)) { return FALSE; } diff --git a/app/modules/theme/controllers/template.php b/app/modules/theme/controllers/template.php old mode 100644 new mode 100755 diff --git a/app/modules/theme/models/theme_model.php b/app/modules/theme/models/theme_model.php old mode 100644 new mode 100755 diff --git a/app/modules/theme/theme.php b/app/modules/theme/theme.php old mode 100644 new mode 100755 diff --git a/app/modules/theme/views/editor.php b/app/modules/theme/views/editor.php old mode 100644 new mode 100755 diff --git a/app/modules/theme/views/install_complete.php b/app/modules/theme/views/install_complete.php old mode 100644 new mode 100755 diff --git a/app/modules/theme/views/install_confirm.php b/app/modules/theme/views/install_confirm.php old mode 100644 new mode 100755 diff --git a/app/modules/theme/views/themes.php b/app/modules/theme/views/themes.php old mode 100644 new mode 100755 diff --git a/app/modules/users/controllers/admincp.php b/app/modules/users/controllers/admincp.php old mode 100644 new mode 100755 diff --git a/app/modules/users/controllers/user_activity.php b/app/modules/users/controllers/user_activity.php old mode 100644 new mode 100755 diff --git a/app/modules/users/controllers/users.php b/app/modules/users/controllers/users.php old mode 100644 new mode 100755 diff --git a/app/modules/users/models/login_model.php b/app/modules/users/models/login_model.php old mode 100644 new mode 100755 diff --git a/app/modules/users/models/user_model.php b/app/modules/users/models/user_model.php old mode 100644 new mode 100755 index f09f32eb..19e78d46 --- a/app/modules/users/models/user_model.php +++ b/app/modules/users/models/user_model.php @@ -153,7 +153,7 @@ public function login ($username, $password, $remember = FALSE) { $user_db = $query->row_array(); $user = $this->get_user($user_db['user_id']); - $hashPassSalt = ($user['salt'] == '') ? $this->generatePassSalt($password,'') : $this->generatePassSalt($password,$user['salt'])); + $hashPassSalt = (($user['salt'] == '') ? $this->generatePassSalt($password,'') : $this->generatePassSalt($password,$user['salt'])); if ($hashPassSalt->pass == $user_db['user_password']) { $authenticated = TRUE; @@ -936,7 +936,7 @@ function new_user($email, $password, $username, $first_name, $last_name, $groups 'user_salt' => $hashPassSalt->salt, 'user_referrer' => ($affiliate != FALSE) ? $affiliate : '0', 'user_signup_date' => date('Y-m-d H:i:s'), - 'user_last_login' => '0000-00-00 00:00:00', + 'user_last_login' => date('Y-m-d H:i:s'), 'user_suspended' => '0', 'user_deleted' => '0', 'user_remember_key' => '', @@ -1026,7 +1026,10 @@ function generatePassSalt($password,$salt=null){ } $hashed_password = md5($password . ':' . $salt); } - return array('pass'=>$hashed_password,'salt'=>$salt); + $hashed_obj = new STDClass; + $hashed_obj->pass = $hashed_password; + $hashed_obj->salt = $salt; + return $hashed_obj; } /** diff --git a/app/modules/users/models/usergroup_model.php b/app/modules/users/models/usergroup_model.php old mode 100644 new mode 100755 diff --git a/app/modules/users/template_plugins/block.in_group.php b/app/modules/users/template_plugins/block.in_group.php old mode 100644 new mode 100755 diff --git a/app/modules/users/template_plugins/block.login_form.php b/app/modules/users/template_plugins/block.login_form.php old mode 100644 new mode 100755 diff --git a/app/modules/users/template_plugins/block.members.php b/app/modules/users/template_plugins/block.members.php old mode 100644 new mode 100755 diff --git a/app/modules/users/template_plugins/block.not_in_group.php b/app/modules/users/template_plugins/block.not_in_group.php old mode 100644 new mode 100755 diff --git a/app/modules/users/template_plugins/block.registration_form.php b/app/modules/users/template_plugins/block.registration_form.php old mode 100644 new mode 100755 diff --git a/app/modules/users/template_plugins/outputfilter.user_activity.php b/app/modules/users/template_plugins/outputfilter.user_activity.php old mode 100644 new mode 100755 diff --git a/app/modules/users/users.php b/app/modules/users/users.php old mode 100644 new mode 100755 index 551d9a98..f726a5d6 --- a/app/modules/users/users.php +++ b/app/modules/users/users.php @@ -65,7 +65,7 @@ function update ($db_version) { `usergroup_name` varchar(150) NOT NULL, `usergroup_default` tinyint(4) NULL, PRIMARY KEY (`usergroup_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); $insert_fields = array( 'usergroup_name' => 'Default', @@ -94,7 +94,7 @@ function update ($db_version) { `user_cart` text, `user_pending_charge_id` int(11), PRIMARY KEY (`user_id`) - ) ENGINE=MyISAM AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1001 ;'); + ) ENGINE=Innodb AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1001 ;'); } if ($db_version < 1.01) { @@ -107,7 +107,7 @@ function update ($db_version) { `user_field_admin_only` tinyint(1) NOT NULL, `user_field_registration_form` tinyint(1) NOT NULL, PRIMARY KEY (`user_field_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;'); } if ($db_version < 1.02) { @@ -127,7 +127,7 @@ function update ($db_version) { `user_login_ip` varchar(50) NOT NULL, `user_login_browser` varchar(255) NOT NULL, PRIMARY KEY (`user_login_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000 ;'); } if ($db_version < 1.05) { @@ -175,7 +175,7 @@ function update ($db_version) { `user_id` int(11) NOT NULL, `user_activity_date` DATETIME NOT NULL, PRIMARY KEY (`user_activity_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000 ;'); + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000 ;'); } if ($db_version < 1.13) { diff --git a/app/modules/users/views/data.php b/app/modules/users/views/data.php old mode 100644 new mode 100755 diff --git a/app/modules/users/views/group_form.php b/app/modules/users/views/group_form.php old mode 100644 new mode 100755 diff --git a/app/modules/users/views/groups.php b/app/modules/users/views/groups.php old mode 100644 new mode 100755 diff --git a/app/modules/users/views/logins.php b/app/modules/users/views/logins.php old mode 100644 new mode 100755 diff --git a/app/modules/users/views/member_list_config.php b/app/modules/users/views/member_list_config.php old mode 100644 new mode 100755 diff --git a/app/modules/users/views/profile.php b/app/modules/users/views/profile.php old mode 100644 new mode 100755 diff --git a/app/modules/users/views/user_form.php b/app/modules/users/views/user_form.php old mode 100644 new mode 100755 diff --git a/app/modules/users/views/users.php b/app/modules/users/views/users.php old mode 100644 new mode 100755 diff --git a/app/third_party/MX/Base.php b/app/third_party/MX/Base.php old mode 100644 new mode 100755 diff --git a/app/third_party/MX/Ci.php b/app/third_party/MX/Ci.php old mode 100644 new mode 100755 diff --git a/app/third_party/MX/Config.php b/app/third_party/MX/Config.php old mode 100644 new mode 100755 diff --git a/app/third_party/MX/Controller.php b/app/third_party/MX/Controller.php old mode 100644 new mode 100755 diff --git a/app/third_party/MX/Lang.php b/app/third_party/MX/Lang.php old mode 100644 new mode 100755 index 2322fa78..0dce8c16 --- a/app/third_party/MX/Lang.php +++ b/app/third_party/MX/Lang.php @@ -35,7 +35,7 @@ **/ class MX_Lang extends CI_Lang { - public function load($langfile, $lang = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') { + public function load($langfile='', $lang = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') { if (is_array($langfile)) { foreach($langfile as $_lang) $this->load($_lang); @@ -64,4 +64,4 @@ public function load($langfile, $lang = '', $return = FALSE, $add_suffix = TRUE, return $this->language; } -} \ No newline at end of file +} diff --git a/app/third_party/MX/Loader.php b/app/third_party/MX/Loader.php old mode 100644 new mode 100755 index 2397397c..9c173c83 --- a/app/third_party/MX/Loader.php +++ b/app/third_party/MX/Loader.php @@ -83,7 +83,8 @@ public function config($file = 'config', $use_sections = FALSE, $fail_gracefully } /** Load the database drivers **/ - public function database($params = '', $return = FALSE, $active_record = NULL) { + public function database($params = '', $return = FALSE, $active_record = NULL) + { if (class_exists('CI_DB', FALSE) AND $return == FALSE AND $active_record == NULL AND isset(CI::$APP->db) AND is_object(CI::$APP->db)) return; @@ -98,7 +99,7 @@ public function database($params = '', $return = FALSE, $active_record = NULL) { } /** Load a module helper **/ - public function helper($helper) { + public function helper($helper = array()) { if (is_array($helper)) return $this->helpers($helper); @@ -113,24 +114,29 @@ public function helper($helper) { } /** Load an array of helpers **/ - public function helpers($helpers) { + public function helpers($helpers = array()) { foreach ($helpers as $_helper) $this->helper($_helper); } /** Load a module language file **/ - public function language($langfile, $idiom = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') { + /*public function language($langfile, $idiom = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') { return CI::$APP->lang->load($langfile, $idiom, $return, $add_suffix, $alt_path, $this->_module); + }*/ + + public function language($file = array(), $lang = '') + { + return CI::$APP->lang->load($langfile, $lang); } - + public function languages($languages) { foreach($languages as $_language) $this->language($language); } /** Load a module library **/ - public function library($library, $params = NULL, $object_name = NULL) { + public function library($library='', $params = NULL, $object_name = NULL) { if (is_array($library)) return $this->libraries($library); - - $class = strtolower(end(explode('/', $library))); + $endLibrary = explode('/', $library); + $class = strtolower(end($endLibrary)); if (isset($this->_ci_classes[$class]) AND $_alias = $this->_ci_classes[$class]) return CI::$APP->$_alias; @@ -172,8 +178,8 @@ public function libraries($libraries) { public function model($model, $object_name = NULL, $connect = FALSE) { if (is_array($model)) return $this->models($model); - - ($_alias = $object_name) OR $_alias = end(explode('/', $model)); + $modelEnd = explode('/', $model); + ($_alias = $object_name) OR $_alias = end($modelEnd); if (in_array($_alias, $this->_ci_models, TRUE)) return CI::$APP->$_alias; @@ -215,8 +221,8 @@ function models($models) { public function module($module, $params = NULL) { if (is_array($module)) return $this->modules($module); - - $_alias = strtolower(end(explode('/', $module))); + $moduleEnd = explode('/', $module); + $_alias = strtolower(end($moduleEnd)); CI::$APP->$_alias = Modules::load(array($module => $params)); return CI::$APP->$_alias; } @@ -256,7 +262,7 @@ public function view($view, $vars = array(), $return = FALSE) { public function _ci_is_instance() {} - public function _ci_get_component($component) { + public function & _ci_get_component($component) { return CI::$APP->$component; } @@ -274,7 +280,8 @@ function _ci_load($_ci_data) { $_ci_file = strpos($_ci_view, '.') ? $_ci_view : $_ci_view.EXT; $_ci_path = $this->_ci_view_path.$_ci_file; } else { - $_ci_file = end(explode('/', $_ci_path)); + $pathEnd = explode('/', $_ci_path); + $_ci_file = end($pathEnd); } if ( ! file_exists($_ci_path)) @@ -288,7 +295,23 @@ function _ci_load($_ci_data) { ob_start(); if ((bool) @ini_get('short_open_tag') === FALSE AND CI::$APP->config->item('rewrite_short_tags') == TRUE) { - echo eval('?>'.preg_replace("/;*\s*\?>/", "; ?>", str_replace(''; + $preg_replace = '; ?>'; + $pattern = array('' . + preg_replace( + '/' . $preg_pattern . '/', + $preg_replace, + str_replace( + $pattern, + $replace, + file_get_contents($_ci_path) + ) + ) + ); } else { include($_ci_path); } @@ -377,4 +400,4 @@ public function _autoloader($autoload) { } /** load the CI class for Modular Separation **/ -(class_exists('CI', FALSE)) OR require dirname(__FILE__).'/Ci.php'; \ No newline at end of file +(class_exists('CI', FALSE)) OR require dirname(__FILE__).'/Ci.php'; diff --git a/app/third_party/MX/Modules.php b/app/third_party/MX/Modules.php old mode 100644 new mode 100755 index 8abeb3e4..8557a03d --- a/app/third_party/MX/Modules.php +++ b/app/third_party/MX/Modules.php @@ -77,7 +77,13 @@ public static function run($module) { /** Load a module controller **/ public static function load($module) { - (is_array($module)) ? list($module, $params) = each($module) : $params = NULL; + if(is_array($module)){ + $modules = $module; + $module = array_keys($module); + $params = array_values($params); + } else { + $params = NULL; + } /* get the requested controller class name */ $alias = strtolower(end(explode('/', $module))); diff --git a/app/third_party/MX/Router.php b/app/third_party/MX/Router.php old mode 100644 new mode 100755 diff --git a/app/updates/3.01.php b/app/updates/3.01.php old mode 100644 new mode 100755 index 1998cca2..a1def465 --- a/app/updates/3.01.php +++ b/app/updates/3.01.php @@ -13,7 +13,7 @@ `hook_created` DATETIME NOT NULL, PRIMARY KEY (`hook_id`), INDEX (`hook_name`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8;'; + ) ENGINE=Innodb DEFAULT CHARSET=utf8;'; foreach ($sql as $query) { $CI->db->query($query); diff --git a/app/updates/3.02.php b/app/updates/3.02.php old mode 100644 new mode 100755 index bda77fb2..c3706731 --- a/app/updates/3.02.php +++ b/app/updates/3.02.php @@ -13,7 +13,7 @@ `bind_created` DATETIME NOT NULL, PRIMARY KEY (`bind_id`), INDEX (`hook_name`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8;'; + ) ENGINE=Innodb DEFAULT CHARSET=utf8;'; foreach ($sql as $query) { $CI->db->query($query); diff --git a/app/updates/3.03.php b/app/updates/3.03.php old mode 100644 new mode 100755 diff --git a/app/updates/3.35.php b/app/updates/3.35.php old mode 100644 new mode 100755 diff --git a/app/updates/3.38.php b/app/updates/3.38.php old mode 100644 new mode 100755 diff --git a/app/updates/3.39.php b/app/updates/3.39.php old mode 100644 new mode 100755 diff --git a/app/updates/3.40.php b/app/updates/3.40.php old mode 100644 new mode 100755 diff --git a/app/updates/3.69.php b/app/updates/3.69.php old mode 100644 new mode 100755 diff --git a/app/updates/install.php b/app/updates/install.php old mode 100644 new mode 100755 index 6827612c..df901bc7 --- a/app/updates/install.php +++ b/app/updates/install.php @@ -10,7 +10,7 @@ `iso3` varchar(3) NOT NULL, `name` varchar(255) NOT NULL, PRIMARY KEY (`country_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=Innodb DEFAULT CHARSET=utf8; -- -- Dumping data for table `countries` @@ -195,11 +195,11 @@ (620, 'PT', 'PRT', 'Portugal'), (630, 'PR', 'PRI', 'Puerto Rico'), (634, 'QA', 'QAT', 'Qatar'), -(638, 'RE', 'REU', 'RŽunion'), +(638, 'RE', 'REU', 'R�union'), (642, 'RO', 'ROU', 'Romania'), (643, 'RU', 'RUS', 'Russian Federation'), (646, 'RW', 'RWA', 'Rwanda'), -(652, 'BL', 'BLM', 'Saint BarthŽlemy'), +(652, 'BL', 'BLM', 'Saint Barth�lemy'), (654, 'SH', 'SHN', 'Saint Helena'), (659, 'KN', 'KNA', 'Saint Kitts and Nevis'), (662, 'LC', 'LCA', 'Saint Lucia'), @@ -283,7 +283,7 @@ `custom_field_validators` text, `custom_field_help_text` text, PRIMARY KEY (`custom_field_id`) -) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ; +) ENGINE=Innodb AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ; -- -------------------------------------------------------- @@ -295,7 +295,7 @@ `custom_field_group_id` int(11) NOT NULL auto_increment, `custom_field_group_name` varchar(150) NOT NULL, PRIMARY KEY (`custom_field_group_id`) -) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ; +) ENGINE=Innodb AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ; INSERT INTO `custom_field_groups` (`custom_field_group_id`, `custom_field_group_name`) VALUES ('1', 'Members'); @@ -311,7 +311,7 @@ `link_controller` varchar(250), `link_method` varchar(250), PRIMARY KEY (`link_id`) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + ) ENGINE=Innodb DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Table structure for table `modules` @@ -322,7 +322,7 @@ `module_name` varchar(50) NOT NULL , `module_version` varchar(25) NOT NULL , PRIMARY KEY (`module_id`) -) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; +) ENGINE=Innodb AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `ci_sessions` ( session_id varchar(40) DEFAULT '0' NOT NULL, @@ -351,7 +351,7 @@ `setting_options` text, `setting_hidden` tinyint(1), PRIMARY KEY (`setting_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 ; +) ENGINE=Innodb DEFAULT CHARSET=utf8 ; -- -- Dumping data for table `settings` @@ -380,7 +380,7 @@ `setting_group_name` varchar(250) default NULL, `setting_group_help` varchar(250) default NULL, PRIMARY KEY (`setting_group_id`) -) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; +) ENGINE=Innodb AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `settings_groups` @@ -405,7 +405,7 @@ `name_short` char(2) NOT NULL default '' COMMENT 'USPS Abbreviation', PRIMARY KEY (`state_id`), UNIQUE KEY `name_long` (`name_long`) -) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8 COMMENT='US States' AUTO_INCREMENT=64 ; +) ENGINE=Innodb AUTO_INCREMENT=64 DEFAULT CHARSET=utf8 COMMENT='US States' AUTO_INCREMENT=64 ; -- -- Dumping data for table `states` @@ -484,7 +484,7 @@ CREATE TABLE `system` ( `db_version` varchar(15) NOT NULL, PRIMARY KEY (`db_version`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=Innodb DEFAULT CHARSET=utf8; -- -- Dumping data for table `system` diff --git a/app/views/cp/dashboard.php b/app/views/cp/dashboard.php old mode 100644 new mode 100755 diff --git a/app/views/cp/error.php b/app/views/cp/error.php old mode 100644 new mode 100755 diff --git a/app/views/cp/footer.php b/app/views/cp/footer.php old mode 100644 new mode 100755 diff --git a/app/views/cp/header.php b/app/views/cp/header.php old mode 100644 new mode 100755 diff --git a/app/views/cp/html_footer.php b/app/views/cp/html_footer.php old mode 100644 new mode 100755 diff --git a/app/views/cp/html_header.php b/app/views/cp/html_header.php old mode 100644 new mode 100755 diff --git a/app/views/cp/login.php b/app/views/cp/login.php old mode 100644 new mode 100755 diff --git a/app/views/index.html b/app/views/index.html old mode 100644 new mode 100755 diff --git a/app/views/install/admin.php b/app/views/install/admin.php old mode 100644 new mode 100755 diff --git a/app/views/install/complete.php b/app/views/install/complete.php old mode 100644 new mode 100755 diff --git a/app/views/install/configuration.php b/app/views/install/configuration.php old mode 100644 new mode 100755 index a255cdf3..e8badd7d --- a/app/views/install/configuration.php +++ b/app/views/install/configuration.php @@ -4,7 +4,7 @@

Installation takes just a few moments.

-

must be writable by the web server - You must set the +

must be writable by the web server - You must set the folderfile permissions with CHMOD (0666, 0755, or 0777) and, possibly, file ownership with a CHOWN command.

@@ -57,7 +57,7 @@
  • - +
  • diff --git a/app/views/install/footer.php b/app/views/install/footer.php old mode 100644 new mode 100755 diff --git a/app/views/install/header.php b/app/views/install/header.php old mode 100644 new mode 100755 index 0d30a15c..32137899 --- a/app/views/install/header.php +++ b/app/views/install/header.php @@ -19,9 +19,9 @@ diff --git a/branding/default/css/dashboard.css b/branding/default/css/dashboard.css old mode 100644 new mode 100755 diff --git a/branding/default/css/dataset.css b/branding/default/css/dataset.css old mode 100644 new mode 100755 diff --git a/branding/default/css/datepicker.css b/branding/default/css/datepicker.css old mode 100644 new mode 100755 diff --git a/branding/default/css/installer.css b/branding/default/css/installer.css old mode 100644 new mode 100755 diff --git a/branding/default/css/login.css b/branding/default/css/login.css old mode 100644 new mode 100755 diff --git a/branding/default/css/menu_manager.css b/branding/default/css/menu_manager.css old mode 100644 new mode 100755 diff --git a/branding/default/css/settings.css b/branding/default/css/settings.css old mode 100644 new mode 100755 diff --git a/branding/default/css/theme_editor.css b/branding/default/css/theme_editor.css old mode 100644 new mode 100755 diff --git a/branding/default/css/universal.css b/branding/default/css/universal.css old mode 100644 new mode 100755 diff --git a/branding/default/images/arrow.png b/branding/default/images/arrow.png old mode 100644 new mode 100755 diff --git a/branding/default/images/box-bottom-left.gif b/branding/default/images/box-bottom-left.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/box-bottom-right.gif b/branding/default/images/box-bottom-right.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/box-bottom.gif b/branding/default/images/box-bottom.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/box-right.gif b/branding/default/images/box-right.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/box-top-right.gif b/branding/default/images/box-top-right.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/button.gif b/branding/default/images/button.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/creditcard.png b/branding/default/images/creditcard.png old mode 100644 new mode 100755 diff --git a/branding/default/images/customer.png b/branding/default/images/customer.png old mode 100644 new mode 100755 diff --git a/branding/default/images/dashbox_top.gif b/branding/default/images/dashbox_top.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/gateway.png b/branding/default/images/gateway.png old mode 100644 new mode 100755 diff --git a/branding/default/images/grey_arrow.gif b/branding/default/images/grey_arrow.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/large_button.gif b/branding/default/images/large_button.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/loading.gif b/branding/default/images/loading.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/login.gif b/branding/default/images/login.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/money.png b/branding/default/images/money.png old mode 100644 new mode 100755 diff --git a/branding/default/images/nav_dashboard.png b/branding/default/images/nav_dashboard.png old mode 100644 new mode 100755 diff --git a/branding/default/images/recurring.png b/branding/default/images/recurring.png old mode 100644 new mode 100755 diff --git a/branding/default/images/refreshing.gif b/branding/default/images/refreshing.gif old mode 100644 new mode 100755 diff --git a/branding/default/images/refunded.png b/branding/default/images/refunded.png old mode 100644 new mode 100755 diff --git a/branding/default/images/secure64.png b/branding/default/images/secure64.png old mode 100644 new mode 100755 diff --git a/branding/default/images/support.png b/branding/default/images/support.png old mode 100644 new mode 100755 diff --git a/branding/default/images/warning64.png b/branding/default/images/warning64.png old mode 100644 new mode 100755 diff --git a/branding/default/images/x.png b/branding/default/images/x.png old mode 100644 new mode 100755 diff --git a/branding/default/js/arrange_fields.js b/branding/default/js/arrange_fields.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/.htaccess b/branding/default/js/ckeditor.old/.htaccess old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/CHANGES.md b/branding/default/js/ckeditor.old/CHANGES.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/LICENSE.html b/branding/default/js/ckeditor.old/LICENSE.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/LICENSE.md b/branding/default/js/ckeditor.old/LICENSE.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/README.md b/branding/default/js/ckeditor.old/README.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/adapters/jquery.js b/branding/default/js/ckeditor.old/_source/adapters/jquery.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/_bootstrap.js b/branding/default/js/ckeditor.old/_source/core/_bootstrap.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/ckeditor.js b/branding/default/js/ckeditor.old/_source/core/ckeditor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/ckeditor_base.js b/branding/default/js/ckeditor.old/_source/core/ckeditor_base.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/ckeditor_basic.js b/branding/default/js/ckeditor.old/_source/core/ckeditor_basic.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/command.js b/branding/default/js/ckeditor.old/_source/core/command.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/commanddefinition.js b/branding/default/js/ckeditor.old/_source/core/commanddefinition.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/config.js b/branding/default/js/ckeditor.old/_source/core/config.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dataprocessor.js b/branding/default/js/ckeditor.old/_source/core/dataprocessor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom.js b/branding/default/js/ckeditor.old/_source/core/dom.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/comment.js b/branding/default/js/ckeditor.old/_source/core/dom/comment.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/document.js b/branding/default/js/ckeditor.old/_source/core/dom/document.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/documentfragment.js b/branding/default/js/ckeditor.old/_source/core/dom/documentfragment.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/domobject.js b/branding/default/js/ckeditor.old/_source/core/dom/domobject.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/element.js b/branding/default/js/ckeditor.old/_source/core/dom/element.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/elementpath.js b/branding/default/js/ckeditor.old/_source/core/dom/elementpath.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/event.js b/branding/default/js/ckeditor.old/_source/core/dom/event.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/node.js b/branding/default/js/ckeditor.old/_source/core/dom/node.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/nodelist.js b/branding/default/js/ckeditor.old/_source/core/dom/nodelist.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/range.js b/branding/default/js/ckeditor.old/_source/core/dom/range.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/rangelist.js b/branding/default/js/ckeditor.old/_source/core/dom/rangelist.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/text.js b/branding/default/js/ckeditor.old/_source/core/dom/text.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/walker.js b/branding/default/js/ckeditor.old/_source/core/dom/walker.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/window.js b/branding/default/js/ckeditor.old/_source/core/dom/window.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/dtd.js b/branding/default/js/ckeditor.old/_source/core/dtd.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/editor.js b/branding/default/js/ckeditor.old/_source/core/editor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/editor_basic.js b/branding/default/js/ckeditor.old/_source/core/editor_basic.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/env.js b/branding/default/js/ckeditor.old/_source/core/env.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/event.js b/branding/default/js/ckeditor.old/_source/core/event.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/eventInfo.js b/branding/default/js/ckeditor.old/_source/core/eventInfo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/focusmanager.js b/branding/default/js/ckeditor.old/_source/core/focusmanager.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser.js b/branding/default/js/ckeditor.old/_source/core/htmlparser.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/basicwriter.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/basicwriter.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/cdata.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/cdata.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/comment.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/comment.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/element.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/element.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/filter.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/filter.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/fragment.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/fragment.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/text.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/text.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/lang.js b/branding/default/js/ckeditor.old/_source/core/lang.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/loader.js b/branding/default/js/ckeditor.old/_source/core/loader.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/plugindefinition.js b/branding/default/js/ckeditor.old/_source/core/plugindefinition.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/plugins.js b/branding/default/js/ckeditor.old/_source/core/plugins.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/resourcemanager.js b/branding/default/js/ckeditor.old/_source/core/resourcemanager.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/scriptloader.js b/branding/default/js/ckeditor.old/_source/core/scriptloader.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/skins.js b/branding/default/js/ckeditor.old/_source/core/skins.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/themes.js b/branding/default/js/ckeditor.old/_source/core/themes.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/tools.js b/branding/default/js/ckeditor.old/_source/core/tools.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/core/ui.js b/branding/default/js/ckeditor.old/_source/core/ui.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/_languages.js b/branding/default/js/ckeditor.old/_source/lang/_languages.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/_translationstatus.txt b/branding/default/js/ckeditor.old/_source/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/af.js b/branding/default/js/ckeditor.old/_source/lang/af.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ar.js b/branding/default/js/ckeditor.old/_source/lang/ar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/bg.js b/branding/default/js/ckeditor.old/_source/lang/bg.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/bn.js b/branding/default/js/ckeditor.old/_source/lang/bn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/bs.js b/branding/default/js/ckeditor.old/_source/lang/bs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ca.js b/branding/default/js/ckeditor.old/_source/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/cs.js b/branding/default/js/ckeditor.old/_source/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/cy.js b/branding/default/js/ckeditor.old/_source/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/da.js b/branding/default/js/ckeditor.old/_source/lang/da.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/de.js b/branding/default/js/ckeditor.old/_source/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/el.js b/branding/default/js/ckeditor.old/_source/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/en-au.js b/branding/default/js/ckeditor.old/_source/lang/en-au.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/en-ca.js b/branding/default/js/ckeditor.old/_source/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/en-gb.js b/branding/default/js/ckeditor.old/_source/lang/en-gb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/en.js b/branding/default/js/ckeditor.old/_source/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/eo.js b/branding/default/js/ckeditor.old/_source/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/es.js b/branding/default/js/ckeditor.old/_source/lang/es.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/et.js b/branding/default/js/ckeditor.old/_source/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/eu.js b/branding/default/js/ckeditor.old/_source/lang/eu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/fa.js b/branding/default/js/ckeditor.old/_source/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/fi.js b/branding/default/js/ckeditor.old/_source/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/fo.js b/branding/default/js/ckeditor.old/_source/lang/fo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/fr-ca.js b/branding/default/js/ckeditor.old/_source/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/fr.js b/branding/default/js/ckeditor.old/_source/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/gl.js b/branding/default/js/ckeditor.old/_source/lang/gl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/gu.js b/branding/default/js/ckeditor.old/_source/lang/gu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/he.js b/branding/default/js/ckeditor.old/_source/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/hi.js b/branding/default/js/ckeditor.old/_source/lang/hi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/hr.js b/branding/default/js/ckeditor.old/_source/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/hu.js b/branding/default/js/ckeditor.old/_source/lang/hu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/is.js b/branding/default/js/ckeditor.old/_source/lang/is.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/it.js b/branding/default/js/ckeditor.old/_source/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ja.js b/branding/default/js/ckeditor.old/_source/lang/ja.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ka.js b/branding/default/js/ckeditor.old/_source/lang/ka.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/km.js b/branding/default/js/ckeditor.old/_source/lang/km.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ko.js b/branding/default/js/ckeditor.old/_source/lang/ko.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/lt.js b/branding/default/js/ckeditor.old/_source/lang/lt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/lv.js b/branding/default/js/ckeditor.old/_source/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/mn.js b/branding/default/js/ckeditor.old/_source/lang/mn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ms.js b/branding/default/js/ckeditor.old/_source/lang/ms.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/nb.js b/branding/default/js/ckeditor.old/_source/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/nl.js b/branding/default/js/ckeditor.old/_source/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/no.js b/branding/default/js/ckeditor.old/_source/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/pl.js b/branding/default/js/ckeditor.old/_source/lang/pl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/pt-br.js b/branding/default/js/ckeditor.old/_source/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/pt.js b/branding/default/js/ckeditor.old/_source/lang/pt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ro.js b/branding/default/js/ckeditor.old/_source/lang/ro.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/ru.js b/branding/default/js/ckeditor.old/_source/lang/ru.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/sk.js b/branding/default/js/ckeditor.old/_source/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/sl.js b/branding/default/js/ckeditor.old/_source/lang/sl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/sr-latn.js b/branding/default/js/ckeditor.old/_source/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/sr.js b/branding/default/js/ckeditor.old/_source/lang/sr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/sv.js b/branding/default/js/ckeditor.old/_source/lang/sv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/th.js b/branding/default/js/ckeditor.old/_source/lang/th.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/tr.js b/branding/default/js/ckeditor.old/_source/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/uk.js b/branding/default/js/ckeditor.old/_source/lang/uk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/vi.js b/branding/default/js/ckeditor.old/_source/lang/vi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/zh-cn.js b/branding/default/js/ckeditor.old/_source/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/lang/zh.js b/branding/default/js/ckeditor.old/_source/lang/zh.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/dialogs/a11yhelp.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/dialogs/a11yhelp.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/he.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/about.js b/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/about.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/logo_ckeditor.png b/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/logo_ckeditor.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/about/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/about/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/adobeair/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/adobeair/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/ajax/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/ajax/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/autogrow/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/autogrow/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/basicstyles/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/basicstyles/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/bbcode/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/bbcode/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/bidi/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/bidi/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/blockquote/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/blockquote/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/button/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/button/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/clipboard/dialogs/paste.js b/branding/default/js/ckeditor.old/_source/plugins/clipboard/dialogs/paste.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/clipboard/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/clipboard/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/colorbutton/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/colorbutton/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/colordialog/dialogs/colordialog.js b/branding/default/js/ckeditor.old/_source/plugins/colordialog/dialogs/colordialog.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/colordialog/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/colordialog/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/contextmenu/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/contextmenu/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/devtools/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/devtools/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/devtools/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/devtools/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialog/dialogDefinition.js b/branding/default/js/ckeditor.old/_source/plugins/dialog/dialogDefinition.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialog/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/dialog/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialogadvtab/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/dialogadvtab/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialogui/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/dialogui/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/div/dialogs/div.js b/branding/default/js/ckeditor.old/_source/plugins/div/dialogs/div.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/div/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/div/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/docprops/dialogs/docprops.js b/branding/default/js/ckeditor.old/_source/plugins/docprops/dialogs/docprops.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/docprops/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/docprops/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/domiterator/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/domiterator/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/editingblock/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/editingblock/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/elementspath/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/elementspath/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/enterkey/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/enterkey/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/entities/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/entities/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/fakeobjects/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/fakeobjects/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/filebrowser/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/filebrowser/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/find/dialogs/find.js b/branding/default/js/ckeditor.old/_source/plugins/find/dialogs/find.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/find/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/find/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/flash/dialogs/flash.js b/branding/default/js/ckeditor.old/_source/plugins/flash/dialogs/flash.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/flash/images/placeholder.png b/branding/default/js/ckeditor.old/_source/plugins/flash/images/placeholder.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/flash/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/flash/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/floatpanel/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/floatpanel/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/font/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/font/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/format/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/format/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/button.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/button.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/checkbox.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/checkbox.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/form.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/form.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/hiddenfield.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/hiddenfield.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/radio.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/radio.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/select.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/select.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textarea.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textarea.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textfield.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textfield.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/images/hiddenfield.gif b/branding/default/js/ckeditor.old/_source/plugins/forms/images/hiddenfield.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/forms/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/horizontalrule/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/horizontalrule/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/htmldataprocessor/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/htmldataprocessor/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/htmlwriter/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/htmlwriter/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframe/dialogs/iframe.js b/branding/default/js/ckeditor.old/_source/plugins/iframe/dialogs/iframe.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframe/images/placeholder.png b/branding/default/js/ckeditor.old/_source/plugins/iframe/images/placeholder.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframe/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/iframe/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframedialog/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/iframedialog/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/image/dialogs/image.js b/branding/default/js/ckeditor.old/_source/plugins/image/dialogs/image.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/image/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/image/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/indent/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/indent/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/justify/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/justify/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/keystrokes/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/keystrokes/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/anchor.js b/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/anchor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/link.js b/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/link.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/images/anchor.gif b/branding/default/js/ckeditor.old/_source/plugins/link/images/anchor.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/link/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/list/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/list/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/listblock/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/listblock/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/liststyle/dialogs/liststyle.js b/branding/default/js/ckeditor.old/_source/plugins/liststyle/dialogs/liststyle.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/liststyle/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/liststyle/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/maximize/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/maximize/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/menu/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/menu/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/menubutton/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/menubutton/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/newpage/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/newpage/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pagebreak/images/pagebreak.gif b/branding/default/js/ckeditor.old/_source/plugins/pagebreak/images/pagebreak.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pagebreak/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/pagebreak/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/panel/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/panel/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/panelbutton/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/panelbutton/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastefromword/filter/default.js b/branding/default/js/ckeditor.old/_source/plugins/pastefromword/filter/default.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastefromword/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/pastefromword/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastetext/dialogs/pastetext.js b/branding/default/js/ckeditor.old/_source/plugins/pastetext/dialogs/pastetext.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastetext/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/pastetext/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/dialogs/placeholder.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/dialogs/placeholder.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/he.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/placeholder.gif b/branding/default/js/ckeditor.old/_source/plugins/placeholder/placeholder.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/popup/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/popup/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/preview/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/preview/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/print/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/print/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/removeformat/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/removeformat/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/resize/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/resize/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/richcombo/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/richcombo/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/save/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/save/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/options.js b/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/options.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/toolbar.css b/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/toolbar.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/scayt/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/scayt/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/selection/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/selection/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_address.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_address.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_blockquote.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_blockquote.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_div.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_div.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h1.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h1.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h2.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h2.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h3.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h3.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h4.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h4.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h5.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h5.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h6.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_p.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_p.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_pre.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_pre.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/showblocks/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showborders/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/showborders/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/dialogs/smiley.js b/branding/default/js/ckeditor.old/_source/plugins/smiley/dialogs/smiley.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angel_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angel_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angry_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angry_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/broken_heart.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/broken_heart.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/confused_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/confused_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/cry_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/cry_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/devil_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/devil_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/embaressed_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/embaressed_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/envelope.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/envelope.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/heart.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/heart.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/kiss.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/kiss.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/lightbulb.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/lightbulb.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/omg_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/omg_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/regular_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/regular_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/sad_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/sad_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/shades_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/shades_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/teeth_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/teeth_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_down.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_down.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_up.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_up.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/tounge_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/tounge_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/whatchutalkingabout_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/wink_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/wink_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/smiley/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/sourcearea/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/sourcearea/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/specialchar/dialogs/specialchar.js b/branding/default/js/ckeditor.old/_source/plugins/specialchar/dialogs/specialchar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/specialchar/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/specialchar/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/specialchar/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/specialchar/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/styles/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/styles/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/styles/styles/default.js b/branding/default/js/ckeditor.old/_source/plugins/styles/styles/default.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/stylescombo/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/stylescombo/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/stylesheetparser/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/stylesheetparser/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tab/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/tab/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/table/dialogs/table.js b/branding/default/js/ckeditor.old/_source/plugins/table/dialogs/table.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/table/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/table/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tableresize/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/tableresize/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tabletools/dialogs/tableCell.js b/branding/default/js/ckeditor.old/_source/plugins/tabletools/dialogs/tableCell.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tabletools/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/tabletools/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/dialogs/templates.js b/branding/default/js/ckeditor.old/_source/plugins/templates/dialogs/templates.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/templates/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/default.js b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/default.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template1.gif b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template1.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template2.gif b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template2.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template3.gif b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template3.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/toolbar/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/toolbar/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/dialogs/uicolor.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/dialogs/uicolor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/he.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/uicolor.gif b/branding/default/js/ckeditor.old/_source/plugins/uicolor/uicolor.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_bg.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_bg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_thumb.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_thumb.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_mask.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_mask.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_thumb.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_thumb.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/yui.css b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/yui.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/yui.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/yui.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/undo/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/undo/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/ciframe.html b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/ciframe.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/tmpFrameset.html b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/tmpFrameset.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.css b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.js b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/wsc/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wysiwygarea/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/wysiwygarea/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/plugins/xml/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/xml/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/dialog.css b/branding/default/js/ckeditor.old/_source/skins/kama/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/editor.css b/branding/default/js/ckeditor.old/_source/skins/kama/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/elementspath.css b/branding/default/js/ckeditor.old/_source/skins/kama/elementspath.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/icons.css b/branding/default/js/ckeditor.old/_source/skins/kama/icons.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/icons.png b/branding/default/js/ckeditor.old/_source/skins/kama/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/icons_rtl.png b/branding/default/js/ckeditor.old/_source/skins/kama/icons_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.gif b/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/mini.gif b/branding/default/js/ckeditor.old/_source/skins/kama/images/mini.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/noimage.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/noimage.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites_ie6.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/toolbar_start.gif b/branding/default/js/ckeditor.old/_source/skins/kama/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/mainui.css b/branding/default/js/ckeditor.old/_source/skins/kama/mainui.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/menu.css b/branding/default/js/ckeditor.old/_source/skins/kama/menu.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/panel.css b/branding/default/js/ckeditor.old/_source/skins/kama/panel.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/presets.css b/branding/default/js/ckeditor.old/_source/skins/kama/presets.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/reset.css b/branding/default/js/ckeditor.old/_source/skins/kama/reset.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/richcombo.css b/branding/default/js/ckeditor.old/_source/skins/kama/richcombo.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/skin.js b/branding/default/js/ckeditor.old/_source/skins/kama/skin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/templates.css b/branding/default/js/ckeditor.old/_source/skins/kama/templates.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/toolbar.css b/branding/default/js/ckeditor.old/_source/skins/kama/toolbar.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/dialog.css b/branding/default/js/ckeditor.old/_source/skins/office2003/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/editor.css b/branding/default/js/ckeditor.old/_source/skins/office2003/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/elementspath.css b/branding/default/js/ckeditor.old/_source/skins/office2003/elementspath.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/icons.css b/branding/default/js/ckeditor.old/_source/skins/office2003/icons.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/icons.png b/branding/default/js/ckeditor.old/_source/skins/office2003/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/icons_rtl.png b/branding/default/js/ckeditor.old/_source/skins/office2003/icons_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.gif b/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/mini.gif b/branding/default/js/ckeditor.old/_source/skins/office2003/images/mini.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/noimage.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/noimage.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites_ie6.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/mainui.css b/branding/default/js/ckeditor.old/_source/skins/office2003/mainui.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/menu.css b/branding/default/js/ckeditor.old/_source/skins/office2003/menu.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/panel.css b/branding/default/js/ckeditor.old/_source/skins/office2003/panel.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/presets.css b/branding/default/js/ckeditor.old/_source/skins/office2003/presets.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/reset.css b/branding/default/js/ckeditor.old/_source/skins/office2003/reset.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/richcombo.css b/branding/default/js/ckeditor.old/_source/skins/office2003/richcombo.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/skin.js b/branding/default/js/ckeditor.old/_source/skins/office2003/skin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/templates.css b/branding/default/js/ckeditor.old/_source/skins/office2003/templates.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/toolbar.css b/branding/default/js/ckeditor.old/_source/skins/office2003/toolbar.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/dialog.css b/branding/default/js/ckeditor.old/_source/skins/v2/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/editor.css b/branding/default/js/ckeditor.old/_source/skins/v2/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/elementspath.css b/branding/default/js/ckeditor.old/_source/skins/v2/elementspath.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/icons.css b/branding/default/js/ckeditor.old/_source/skins/v2/icons.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/icons.png b/branding/default/js/ckeditor.old/_source/skins/v2/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/icons_rtl.png b/branding/default/js/ckeditor.old/_source/skins/v2/icons_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.gif b/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/mini.gif b/branding/default/js/ckeditor.old/_source/skins/v2/images/mini.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/noimage.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/noimage.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites_ie6.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/toolbar_start.gif b/branding/default/js/ckeditor.old/_source/skins/v2/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/mainui.css b/branding/default/js/ckeditor.old/_source/skins/v2/mainui.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/menu.css b/branding/default/js/ckeditor.old/_source/skins/v2/menu.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/panel.css b/branding/default/js/ckeditor.old/_source/skins/v2/panel.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/presets.css b/branding/default/js/ckeditor.old/_source/skins/v2/presets.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/reset.css b/branding/default/js/ckeditor.old/_source/skins/v2/reset.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/richcombo.css b/branding/default/js/ckeditor.old/_source/skins/v2/richcombo.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/skin.js b/branding/default/js/ckeditor.old/_source/skins/v2/skin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/templates.css b/branding/default/js/ckeditor.old/_source/skins/v2/templates.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/toolbar.css b/branding/default/js/ckeditor.old/_source/skins/v2/toolbar.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/_source/themes/default/theme.js b/branding/default/js/ckeditor.old/_source/themes/default/theme.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/adapters/jquery.js b/branding/default/js/ckeditor.old/adapters/jquery.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/build-config.js b/branding/default/js/ckeditor.old/build-config.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor.asp b/branding/default/js/ckeditor.old/ckeditor.asp old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor.js b/branding/default/js/ckeditor.old/ckeditor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor.pack b/branding/default/js/ckeditor.old/ckeditor.pack old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor.php b/branding/default/js/ckeditor.old/ckeditor.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor_basic.js b/branding/default/js/ckeditor.old/ckeditor_basic.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor_basic_source.js b/branding/default/js/ckeditor.old/ckeditor_basic_source.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor_php4.php b/branding/default/js/ckeditor.old/ckeditor_php4.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor_php5.php b/branding/default/js/ckeditor.old/ckeditor_php5.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/ckeditor_source.js b/branding/default/js/ckeditor.old/ckeditor_source.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/config.js b/branding/default/js/ckeditor.old/config.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/contents.css b/branding/default/js/ckeditor.old/contents.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/images/spacer.gif b/branding/default/js/ckeditor.old/images/spacer.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/browse.php b/branding/default/js/ckeditor.old/kcfinder/browse.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/config.php b/branding/default/js/ckeditor.old/kcfinder/config.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/.htaccess b/branding/default/js/ckeditor.old/kcfinder/core/.htaccess old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/autoload.php b/branding/default/js/ckeditor.old/kcfinder/core/autoload.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/browser.php b/branding/default/js/ckeditor.old/kcfinder/core/browser.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/types/type_img.php b/branding/default/js/ckeditor.old/kcfinder/core/types/type_img.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/types/type_mime.php b/branding/default/js/ckeditor.old/kcfinder/core/types/type_mime.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/uploader.php b/branding/default/js/ckeditor.old/kcfinder/core/uploader.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/css/index.php b/branding/default/js/ckeditor.old/kcfinder/css/index.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/.htaccess b/branding/default/js/ckeditor.old/kcfinder/doc/.htaccess old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/Changelog b/branding/default/js/ckeditor.old/kcfinder/doc/Changelog old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/INSTALL b/branding/default/js/ckeditor.old/kcfinder/doc/INSTALL old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.GPL b/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.GPL old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.LGPL b/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.LGPL old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/README b/branding/default/js/ckeditor.old/kcfinder/doc/README old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/0bject.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/0bject.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/clipboard.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/clipboard.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/files.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/files.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/folders.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/folders.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/index.php b/branding/default/js/ckeditor.old/kcfinder/js/browser/index.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/init.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/init.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/misc.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/misc.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/settings.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/settings.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/toolbar.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/toolbar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/helper.js b/branding/default/js/ckeditor.old/kcfinder/js/helper.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/jquery.drag.js b/branding/default/js/ckeditor.old/kcfinder/js/jquery.drag.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/jquery.js b/branding/default/js/ckeditor.old/kcfinder/js/jquery.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/jquery.rightClick.js b/branding/default/js/ckeditor.old/kcfinder/js/jquery.rightClick.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/js_localize.php b/branding/default/js/ckeditor.old/kcfinder/js_localize.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/.htaccess b/branding/default/js/ckeditor.old/kcfinder/lang/.htaccess old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/bg.php b/branding/default/js/ckeditor.old/kcfinder/lang/bg.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/cs.php b/branding/default/js/ckeditor.old/kcfinder/lang/cs.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/de.php b/branding/default/js/ckeditor.old/kcfinder/lang/de.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/en.php b/branding/default/js/ckeditor.old/kcfinder/lang/en.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/es.php b/branding/default/js/ckeditor.old/kcfinder/lang/es.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/fr.php b/branding/default/js/ckeditor.old/kcfinder/lang/fr.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/hu.php b/branding/default/js/ckeditor.old/kcfinder/lang/hu.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/it.php b/branding/default/js/ckeditor.old/kcfinder/lang/it.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/pl.php b/branding/default/js/ckeditor.old/kcfinder/lang/pl.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/pt.php b/branding/default/js/ckeditor.old/kcfinder/lang/pt.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/ru.php b/branding/default/js/ckeditor.old/kcfinder/lang/ru.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/.htaccess b/branding/default/js/ckeditor.old/kcfinder/lib/.htaccess old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php b/branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php old mode 100644 new mode 100755 index ad35edcf..38dce4f6 --- a/branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php +++ b/branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php @@ -52,8 +52,8 @@ protected function build_image($image) { $height = @imagesy($image); } elseif (is_array($image)) { - list($key, $width) = each($image); - list($key, $height) = each($image); + $width = $image[0]; + $height = $image[1]; $image = imagecreatetruecolor($width, $height); } elseif (false !== (list($width, $height, $type) = @getimagesize($image))) { diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/class_input.php b/branding/default/js/ckeditor.old/kcfinder/lib/class_input.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/class_zipFolder.php b/branding/default/js/ckeditor.old/kcfinder/lib/class_zipFolder.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_dir.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_dir.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_file.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_file.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_httpCache.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_httpCache.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_path.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_path.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_text.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_text.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/about.txt b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/about.txt old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/..png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/..png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/.image.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/.image.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/avi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/avi.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bat.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bat.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bmp.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bmp.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bz2.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bz2.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ccd.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ccd.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cgi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cgi.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/com.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/com.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/csh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/csh.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cue.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cue.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/deb.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/deb.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/dll.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/dll.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/doc.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/doc.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/docx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/docx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/exe.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/exe.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fla.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fla.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/flv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/flv.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fon.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fon.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gif.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gz.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/htm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/htm.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/html.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/html.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ini.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ini.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/iso.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/iso.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jar.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jar.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/java.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/java.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpeg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/js.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/js.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mds.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mds.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mdx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mdx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mid.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mid.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/midi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/midi.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mkv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mkv.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mov.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mov.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mp3.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mp3.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpeg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nfo.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nfo.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nrg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nrg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ogg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ogg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pdf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pdf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/php.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/php.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/phps.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/phps.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pl.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pm.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/png.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/png.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ppt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ppt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pptx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pptx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/qt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/qt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rpm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rpm.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rtf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rtf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sh.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/srt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/srt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sub.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sub.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/swf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/swf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tgz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tgz.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tif.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tiff.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tiff.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/torrent.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/torrent.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ttf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ttf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/txt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/txt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wav.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wav.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wma.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wma.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xls.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xls.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xlsx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xlsx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/zip.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/zip.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/..png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/..png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/.image.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/.image.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/avi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/avi.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bat.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bat.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bmp.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bmp.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bz2.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bz2.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ccd.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ccd.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cgi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cgi.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/com.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/com.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/csh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/csh.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cue.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cue.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/deb.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/deb.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/dll.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/dll.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/doc.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/doc.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/docx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/docx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/exe.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/exe.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fla.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fla.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/flv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/flv.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fon.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fon.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gif.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gz.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/htm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/htm.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/html.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/html.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ini.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ini.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/iso.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/iso.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jar.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jar.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/java.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/java.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpeg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/js.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/js.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mds.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mds.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mdx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mdx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mid.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mid.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/midi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/midi.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mkv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mkv.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mov.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mov.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mp3.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mp3.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpeg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nfo.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nfo.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nrg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nrg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ogg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ogg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pdf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pdf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/php.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/php.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/phps.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/phps.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pl.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pm.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/png.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/png.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ppt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ppt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pptx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pptx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/qt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/qt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rpm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rpm.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rtf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rtf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sh.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/srt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/srt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sub.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sub.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/swf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/swf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tgz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tgz.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tif.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tiff.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tiff.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/torrent.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/torrent.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ttf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ttf.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/txt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/txt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wav.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wav.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wma.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wma.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xls.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xls.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xlsx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xlsx.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/zip.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/zip.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/about.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/about.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-add.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-add.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-clear.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-clear.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/copy.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/copy.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/delete.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/delete.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/download.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/download.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/folder-new.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/folder-new.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/maximize.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/maximize.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/move.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/move.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/refresh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/refresh.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/rename.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/rename.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/select.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/select.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/settings.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/settings.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/upload.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/upload.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/view.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/view.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/loading.gif b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/loading.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/denied.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/denied.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder_current.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder_current.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/minus.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/minus.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/plus.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/plus.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/init.js b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/init.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/style.css b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/style.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/.htaccess b/branding/default/js/ckeditor.old/kcfinder/tpl/.htaccess old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__css.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__css.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__javascript.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__javascript.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_browser.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_browser.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_chDir.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_chDir.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_deleteDir.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_deleteDir.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_error.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_error.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_expand.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_expand.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_init.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_init.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_renameDir.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_renameDir.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/upload.php b/branding/default/js/ckeditor.old/kcfinder/upload.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/kcfinder/upload/.htaccess b/branding/default/js/ckeditor.old/kcfinder/upload/.htaccess old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/_languages.js b/branding/default/js/ckeditor.old/lang/_languages.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/_translationstatus.txt b/branding/default/js/ckeditor.old/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/af.js b/branding/default/js/ckeditor.old/lang/af.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ar.js b/branding/default/js/ckeditor.old/lang/ar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/bg.js b/branding/default/js/ckeditor.old/lang/bg.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/bn.js b/branding/default/js/ckeditor.old/lang/bn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/bs.js b/branding/default/js/ckeditor.old/lang/bs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ca.js b/branding/default/js/ckeditor.old/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/cs.js b/branding/default/js/ckeditor.old/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/cy.js b/branding/default/js/ckeditor.old/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/da.js b/branding/default/js/ckeditor.old/lang/da.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/de.js b/branding/default/js/ckeditor.old/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/el.js b/branding/default/js/ckeditor.old/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/en-au.js b/branding/default/js/ckeditor.old/lang/en-au.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/en-ca.js b/branding/default/js/ckeditor.old/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/en-gb.js b/branding/default/js/ckeditor.old/lang/en-gb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/en.js b/branding/default/js/ckeditor.old/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/eo.js b/branding/default/js/ckeditor.old/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/es.js b/branding/default/js/ckeditor.old/lang/es.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/et.js b/branding/default/js/ckeditor.old/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/eu.js b/branding/default/js/ckeditor.old/lang/eu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/fa.js b/branding/default/js/ckeditor.old/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/fi.js b/branding/default/js/ckeditor.old/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/fo.js b/branding/default/js/ckeditor.old/lang/fo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/fr-ca.js b/branding/default/js/ckeditor.old/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/fr.js b/branding/default/js/ckeditor.old/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/gl.js b/branding/default/js/ckeditor.old/lang/gl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/gu.js b/branding/default/js/ckeditor.old/lang/gu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/he.js b/branding/default/js/ckeditor.old/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/hi.js b/branding/default/js/ckeditor.old/lang/hi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/hr.js b/branding/default/js/ckeditor.old/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/hu.js b/branding/default/js/ckeditor.old/lang/hu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/is.js b/branding/default/js/ckeditor.old/lang/is.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/it.js b/branding/default/js/ckeditor.old/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ja.js b/branding/default/js/ckeditor.old/lang/ja.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ka.js b/branding/default/js/ckeditor.old/lang/ka.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/km.js b/branding/default/js/ckeditor.old/lang/km.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ko.js b/branding/default/js/ckeditor.old/lang/ko.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ku.js b/branding/default/js/ckeditor.old/lang/ku.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/lt.js b/branding/default/js/ckeditor.old/lang/lt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/lv.js b/branding/default/js/ckeditor.old/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/mk.js b/branding/default/js/ckeditor.old/lang/mk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/mn.js b/branding/default/js/ckeditor.old/lang/mn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ms.js b/branding/default/js/ckeditor.old/lang/ms.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/nb.js b/branding/default/js/ckeditor.old/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/nl.js b/branding/default/js/ckeditor.old/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/no.js b/branding/default/js/ckeditor.old/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/pl.js b/branding/default/js/ckeditor.old/lang/pl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/pt-br.js b/branding/default/js/ckeditor.old/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/pt.js b/branding/default/js/ckeditor.old/lang/pt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ro.js b/branding/default/js/ckeditor.old/lang/ro.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ru.js b/branding/default/js/ckeditor.old/lang/ru.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/sk.js b/branding/default/js/ckeditor.old/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/sl.js b/branding/default/js/ckeditor.old/lang/sl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/sr-latn.js b/branding/default/js/ckeditor.old/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/sr.js b/branding/default/js/ckeditor.old/lang/sr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/sv.js b/branding/default/js/ckeditor.old/lang/sv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/th.js b/branding/default/js/ckeditor.old/lang/th.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/tr.js b/branding/default/js/ckeditor.old/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/ug.js b/branding/default/js/ckeditor.old/lang/ug.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/uk.js b/branding/default/js/ckeditor.old/lang/uk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/vi.js b/branding/default/js/ckeditor.old/lang/vi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/zh-cn.js b/branding/default/js/ckeditor.old/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/lang/zh.js b/branding/default/js/ckeditor.old/lang/zh.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/MediaEmbed/dialogs/mediaembed.html b/branding/default/js/ckeditor.old/plugins/MediaEmbed/dialogs/mediaembed.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/MediaEmbed/images/icon.gif b/branding/default/js/ckeditor.old/plugins/MediaEmbed/images/icon.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/MediaEmbed/plugin.js b/branding/default/js/ckeditor.old/plugins/MediaEmbed/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/a11yhelp/dialogs/a11yhelp.js b/branding/default/js/ckeditor.old/plugins/a11yhelp/dialogs/a11yhelp.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/en.js b/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/he.js b/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/about/dialogs/about.js b/branding/default/js/ckeditor.old/plugins/about/dialogs/about.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/about/dialogs/logo_ckeditor.png b/branding/default/js/ckeditor.old/plugins/about/dialogs/logo_ckeditor.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/adobeair/plugin.js b/branding/default/js/ckeditor.old/plugins/adobeair/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/ajax/plugin.js b/branding/default/js/ckeditor.old/plugins/ajax/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/autogrow/plugin.js b/branding/default/js/ckeditor.old/plugins/autogrow/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/bbcode/plugin.js b/branding/default/js/ckeditor.old/plugins/bbcode/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/clipboard/dialogs/paste.js b/branding/default/js/ckeditor.old/plugins/clipboard/dialogs/paste.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/colordialog/dialogs/colordialog.js b/branding/default/js/ckeditor.old/plugins/colordialog/dialogs/colordialog.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/devtools/lang/en.js b/branding/default/js/ckeditor.old/plugins/devtools/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/devtools/plugin.js b/branding/default/js/ckeditor.old/plugins/devtools/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/dialog/dialogDefinition.js b/branding/default/js/ckeditor.old/plugins/dialog/dialogDefinition.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/div/dialogs/div.js b/branding/default/js/ckeditor.old/plugins/div/dialogs/div.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/docprops/dialogs/docprops.js b/branding/default/js/ckeditor.old/plugins/docprops/dialogs/docprops.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/docprops/plugin.js b/branding/default/js/ckeditor.old/plugins/docprops/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/fakeobjects/images/spacer.gif b/branding/default/js/ckeditor.old/plugins/fakeobjects/images/spacer.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/find/dialogs/find.js b/branding/default/js/ckeditor.old/plugins/find/dialogs/find.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/flash/dialogs/flash.js b/branding/default/js/ckeditor.old/plugins/flash/dialogs/flash.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/flash/images/placeholder.png b/branding/default/js/ckeditor.old/plugins/flash/images/placeholder.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/button.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/button.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/checkbox.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/checkbox.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/form.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/form.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/hiddenfield.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/hiddenfield.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/radio.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/radio.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/select.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/select.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/textarea.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/textarea.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/textfield.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/textfield.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/forms/images/hiddenfield.gif b/branding/default/js/ckeditor.old/plugins/forms/images/hiddenfield.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/icons.png b/branding/default/js/ckeditor.old/plugins/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/iframe/dialogs/iframe.js b/branding/default/js/ckeditor.old/plugins/iframe/dialogs/iframe.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/iframe/images/placeholder.png b/branding/default/js/ckeditor.old/plugins/iframe/images/placeholder.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/iframedialog/plugin.js b/branding/default/js/ckeditor.old/plugins/iframedialog/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/image/dialogs/image.js b/branding/default/js/ckeditor.old/plugins/image/dialogs/image.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/link/dialogs/anchor.js b/branding/default/js/ckeditor.old/plugins/link/dialogs/anchor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/link/dialogs/link.js b/branding/default/js/ckeditor.old/plugins/link/dialogs/link.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/link/images/anchor.gif b/branding/default/js/ckeditor.old/plugins/link/images/anchor.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/link/images/anchor.png b/branding/default/js/ckeditor.old/plugins/link/images/anchor.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/liststyle/dialogs/liststyle.js b/branding/default/js/ckeditor.old/plugins/liststyle/dialogs/liststyle.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/pagebreak/images/pagebreak.gif b/branding/default/js/ckeditor.old/plugins/pagebreak/images/pagebreak.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/pastefromword/filter/default.js b/branding/default/js/ckeditor.old/plugins/pastefromword/filter/default.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/pastetext/dialogs/pastetext.js b/branding/default/js/ckeditor.old/plugins/pastetext/dialogs/pastetext.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/dialogs/placeholder.js b/branding/default/js/ckeditor.old/plugins/placeholder/dialogs/placeholder.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/lang/en.js b/branding/default/js/ckeditor.old/plugins/placeholder/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/lang/he.js b/branding/default/js/ckeditor.old/plugins/placeholder/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/placeholder.gif b/branding/default/js/ckeditor.old/plugins/placeholder/placeholder.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/plugin.js b/branding/default/js/ckeditor.old/plugins/placeholder/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/scayt/dialogs/options.js b/branding/default/js/ckeditor.old/plugins/scayt/dialogs/options.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/scayt/dialogs/toolbar.css b/branding/default/js/ckeditor.old/plugins/scayt/dialogs/toolbar.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_address.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_address.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_blockquote.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_blockquote.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_div.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_div.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h1.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h1.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h2.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h2.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h3.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h3.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h4.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h4.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h5.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h5.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h6.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_p.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_p.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_pre.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_pre.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/dialogs/smiley.js b/branding/default/js/ckeditor.old/plugins/smiley/dialogs/smiley.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/angel_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/angel_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/angry_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/angry_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/broken_heart.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/broken_heart.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/confused_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/confused_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/cry_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/cry_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/devil_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/devil_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/embaressed_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/embaressed_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/envelope.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/envelope.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/heart.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/heart.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/kiss.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/kiss.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/lightbulb.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/lightbulb.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/omg_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/omg_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/regular_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/regular_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/sad_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/sad_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/shades_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/shades_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/teeth_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/teeth_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_down.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_down.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_up.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_up.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/tounge_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/tounge_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/whatchutalkingabout_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/wink_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/wink_smile.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/specialchar/dialogs/specialchar.js b/branding/default/js/ckeditor.old/plugins/specialchar/dialogs/specialchar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/specialchar/lang/en.js b/branding/default/js/ckeditor.old/plugins/specialchar/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/styles/styles/default.js b/branding/default/js/ckeditor.old/plugins/styles/styles/default.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/stylesheetparser/plugin.js b/branding/default/js/ckeditor.old/plugins/stylesheetparser/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/table/dialogs/table.js b/branding/default/js/ckeditor.old/plugins/table/dialogs/table.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/tableresize/plugin.js b/branding/default/js/ckeditor.old/plugins/tableresize/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/tabletools/dialogs/tableCell.js b/branding/default/js/ckeditor.old/plugins/tabletools/dialogs/tableCell.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/templates/dialogs/templates.js b/branding/default/js/ckeditor.old/plugins/templates/dialogs/templates.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/default.js b/branding/default/js/ckeditor.old/plugins/templates/templates/default.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/images/template1.gif b/branding/default/js/ckeditor.old/plugins/templates/templates/images/template1.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/images/template2.gif b/branding/default/js/ckeditor.old/plugins/templates/templates/images/template2.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/images/template3.gif b/branding/default/js/ckeditor.old/plugins/templates/templates/images/template3.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/dialogs/uicolor.js b/branding/default/js/ckeditor.old/plugins/uicolor/dialogs/uicolor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/lang/en.js b/branding/default/js/ckeditor.old/plugins/uicolor/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/lang/he.js b/branding/default/js/ckeditor.old/plugins/uicolor/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/plugin.js b/branding/default/js/ckeditor.old/plugins/uicolor/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/uicolor.gif b/branding/default/js/ckeditor.old/plugins/uicolor/uicolor.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_bg.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_bg.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_thumb.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_thumb.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_mask.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_mask.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_thumb.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_thumb.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/yui.css b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/yui.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/yui.js b/branding/default/js/ckeditor.old/plugins/uicolor/yui/yui.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/ciframe.html b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/ciframe.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/tmpFrameset.html b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/tmpFrameset.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.css b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.js b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/plugins/xml/plugin.js b/branding/default/js/ckeditor.old/plugins/xml/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/ajax.html b/branding/default/js/ckeditor.old/samples/ajax.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/api.html b/branding/default/js/ckeditor.old/samples/api.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/appendto.html b/branding/default/js/ckeditor.old/samples/appendto.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/assets/inlineall/logo.png b/branding/default/js/ckeditor.old/samples/assets/inlineall/logo.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/assets/outputxhtml/outputxhtml.css b/branding/default/js/ckeditor.old/samples/assets/outputxhtml/outputxhtml.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/assets/posteddata.php b/branding/default/js/ckeditor.old/samples/assets/posteddata.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/assets/sample.css b/branding/default/js/ckeditor.old/samples/assets/sample.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/assets/sample.jpg b/branding/default/js/ckeditor.old/samples/assets/sample.jpg old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/assets/uilanguages/languages.js b/branding/default/js/ckeditor.old/samples/assets/uilanguages/languages.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/datafiltering.html b/branding/default/js/ckeditor.old/samples/datafiltering.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/divreplace.html b/branding/default/js/ckeditor.old/samples/divreplace.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/index.html b/branding/default/js/ckeditor.old/samples/index.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/inlineall.html b/branding/default/js/ckeditor.old/samples/inlineall.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/inlinebycode.html b/branding/default/js/ckeditor.old/samples/inlinebycode.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/plugins/dialog/assets/my_dialog.js b/branding/default/js/ckeditor.old/samples/plugins/dialog/assets/my_dialog.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/plugins/dialog/dialog.html b/branding/default/js/ckeditor.old/samples/plugins/dialog/dialog.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/plugins/enterkey/enterkey.html b/branding/default/js/ckeditor.old/samples/plugins/enterkey/enterkey.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/plugins/toolbar/toolbar.html b/branding/default/js/ckeditor.old/samples/plugins/toolbar/toolbar.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/plugins/wysiwygarea/fullpage.html b/branding/default/js/ckeditor.old/samples/plugins/wysiwygarea/fullpage.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/readonly.html b/branding/default/js/ckeditor.old/samples/readonly.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/replacebyclass.html b/branding/default/js/ckeditor.old/samples/replacebyclass.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/replacebycode.html b/branding/default/js/ckeditor.old/samples/replacebycode.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/sample.css b/branding/default/js/ckeditor.old/samples/sample.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/sample.js b/branding/default/js/ckeditor.old/samples/sample.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/sample_posteddata.php b/branding/default/js/ckeditor.old/samples/sample_posteddata.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/tabindex.html b/branding/default/js/ckeditor.old/samples/tabindex.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/uicolor.html b/branding/default/js/ckeditor.old/samples/uicolor.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/uilanguages.html b/branding/default/js/ckeditor.old/samples/uilanguages.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/samples/xhtmlstyle.html b/branding/default/js/ckeditor.old/samples/xhtmlstyle.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/dialog.css b/branding/default/js/ckeditor.old/skins/kama/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/editor.css b/branding/default/js/ckeditor.old/skins/kama/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/icons.png b/branding/default/js/ckeditor.old/skins/kama/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/icons_rtl.png b/branding/default/js/ckeditor.old/skins/kama/icons_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.gif b/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.png b/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/mini.gif b/branding/default/js/ckeditor.old/skins/kama/images/mini.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/noimage.png b/branding/default/js/ckeditor.old/skins/kama/images/noimage.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/sprites.png b/branding/default/js/ckeditor.old/skins/kama/images/sprites.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/sprites_ie6.png b/branding/default/js/ckeditor.old/skins/kama/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/toolbar_start.gif b/branding/default/js/ckeditor.old/skins/kama/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/skin.js b/branding/default/js/ckeditor.old/skins/kama/skin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/kama/templates.css b/branding/default/js/ckeditor.old/skins/kama/templates.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog.css b/branding/default/js/ckeditor.old/skins/moono/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_ie.css b/branding/default/js/ckeditor.old/skins/moono/dialog_ie.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_ie7.css b/branding/default/js/ckeditor.old/skins/moono/dialog_ie7.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_ie8.css b/branding/default/js/ckeditor.old/skins/moono/dialog_ie8.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_iequirks.css b/branding/default/js/ckeditor.old/skins/moono/dialog_iequirks.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_opera.css b/branding/default/js/ckeditor.old/skins/moono/dialog_opera.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor.css b/branding/default/js/ckeditor.old/skins/moono/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_gecko.css b/branding/default/js/ckeditor.old/skins/moono/editor_gecko.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_ie.css b/branding/default/js/ckeditor.old/skins/moono/editor_ie.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_ie7.css b/branding/default/js/ckeditor.old/skins/moono/editor_ie7.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_ie8.css b/branding/default/js/ckeditor.old/skins/moono/editor_ie8.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_iequirks.css b/branding/default/js/ckeditor.old/skins/moono/editor_iequirks.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/icons.png b/branding/default/js/ckeditor.old/skins/moono/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/images/arrow.png b/branding/default/js/ckeditor.old/skins/moono/images/arrow.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/images/close.png b/branding/default/js/ckeditor.old/skins/moono/images/close.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/images/mini.png b/branding/default/js/ckeditor.old/skins/moono/images/mini.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/moono/readme.md b/branding/default/js/ckeditor.old/skins/moono/readme.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/dialog.css b/branding/default/js/ckeditor.old/skins/office2003/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/editor.css b/branding/default/js/ckeditor.old/skins/office2003/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/icons.png b/branding/default/js/ckeditor.old/skins/office2003/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/icons_rtl.png b/branding/default/js/ckeditor.old/skins/office2003/icons_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.gif b/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.png b/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/mini.gif b/branding/default/js/ckeditor.old/skins/office2003/images/mini.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/noimage.png b/branding/default/js/ckeditor.old/skins/office2003/images/noimage.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/sprites.png b/branding/default/js/ckeditor.old/skins/office2003/images/sprites.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/sprites_ie6.png b/branding/default/js/ckeditor.old/skins/office2003/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/skin.js b/branding/default/js/ckeditor.old/skins/office2003/skin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/office2003/templates.css b/branding/default/js/ckeditor.old/skins/office2003/templates.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/dialog.css b/branding/default/js/ckeditor.old/skins/v2/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/editor.css b/branding/default/js/ckeditor.old/skins/v2/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/icons.png b/branding/default/js/ckeditor.old/skins/v2/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/icons_rtl.png b/branding/default/js/ckeditor.old/skins/v2/icons_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.gif b/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.png b/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/mini.gif b/branding/default/js/ckeditor.old/skins/v2/images/mini.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/noimage.png b/branding/default/js/ckeditor.old/skins/v2/images/noimage.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/sprites.png b/branding/default/js/ckeditor.old/skins/v2/images/sprites.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/sprites_ie6.png b/branding/default/js/ckeditor.old/skins/v2/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/toolbar_start.gif b/branding/default/js/ckeditor.old/skins/v2/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/skin.js b/branding/default/js/ckeditor.old/skins/v2/skin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/skins/v2/templates.css b/branding/default/js/ckeditor.old/skins/v2/templates.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/styles.js b/branding/default/js/ckeditor.old/styles.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor.old/themes/default/theme.js b/branding/default/js/ckeditor.old/themes/default/theme.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/CHANGES.md b/branding/default/js/ckeditor/CHANGES.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/LICENSE.md b/branding/default/js/ckeditor/LICENSE.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/README.md b/branding/default/js/ckeditor/README.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/build-config.js b/branding/default/js/ckeditor/build-config.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/kcfinder/core/autoload.php b/branding/default/js/ckeditor/kcfinder/core/autoload.php index 1b0707f1..fac72c12 100755 --- a/branding/default/js/ckeditor/kcfinder/core/autoload.php +++ b/branding/default/js/ckeditor/kcfinder/core/autoload.php @@ -12,7 +12,7 @@ * @link http://kcfinder.sunhater.com */ -function __autoload($class) { +spl_autoload_register(function($class) { if ($class == "uploader") require "core/uploader.php"; elseif ($class == "browser") @@ -23,6 +23,6 @@ function __autoload($class) { require "lib/class_$class.php"; elseif (file_exists("lib/helper_$class.php")) require "lib/helper_$class.php"; -} +}); ?> \ No newline at end of file diff --git a/branding/default/js/ckeditor/kcfinder/lib/class_gd.php b/branding/default/js/ckeditor/kcfinder/lib/class_gd.php index 9a36e4f5..60952321 100755 --- a/branding/default/js/ckeditor/kcfinder/lib/class_gd.php +++ b/branding/default/js/ckeditor/kcfinder/lib/class_gd.php @@ -52,8 +52,8 @@ protected function build_image($image) { $height = @imagesy($image); } elseif (is_array($image)) { - list($key, $width) = each($image); - list($key, $height) = each($image); + $width = $image[0]; + $height = $image[1]; $image = imagecreatetruecolor($width, $height); } elseif (false !== (list($width, $height, $type) = @getimagesize($image))) { diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/css/codemirror.css b/branding/default/js/ckeditor/plugins/codemirror/css/codemirror.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/codemirror.js b/branding/default/js/ckeditor/plugins/codemirror/js/codemirror.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/css.js b/branding/default/js/ckeditor/plugins/codemirror/js/css.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/htmlmixed.js b/branding/default/js/ckeditor/plugins/codemirror/js/htmlmixed.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/javascript.js b/branding/default/js/ckeditor/plugins/codemirror/js/javascript.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/closetag.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/closetag.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/colorize.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/colorize.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/continuecomment.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/continuecomment.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/continuelist.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/continuelist.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.css b/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/foldcode.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/foldcode.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/formatting.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/formatting.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/javascript-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/javascript-hint.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/loadmode.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/loadmode.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/match-highlighter.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/match-highlighter.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/matchbrackets.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/matchbrackets.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/multiplex.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/multiplex.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/overlay.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/overlay.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/pig-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/pig-hint.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode-standalone.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode-standalone.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/search.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/search.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/searchcursor.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/searchcursor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.css b/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/xml-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/xml-hint.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/xml.js b/branding/default/js/ckeditor/plugins/codemirror/js/xml.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance-mobile.css b/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance-mobile.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance.css b/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/blackboard.css b/branding/default/js/ckeditor/plugins/codemirror/theme/blackboard.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/cobalt.css b/branding/default/js/ckeditor/plugins/codemirror/theme/cobalt.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/eclipse.css b/branding/default/js/ckeditor/plugins/codemirror/theme/eclipse.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/elegant.css b/branding/default/js/ckeditor/plugins/codemirror/theme/elegant.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/erlang-dark.css b/branding/default/js/ckeditor/plugins/codemirror/theme/erlang-dark.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/lesser-dark.css b/branding/default/js/ckeditor/plugins/codemirror/theme/lesser-dark.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/monokai.css b/branding/default/js/ckeditor/plugins/codemirror/theme/monokai.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/neat.css b/branding/default/js/ckeditor/plugins/codemirror/theme/neat.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/night.css b/branding/default/js/ckeditor/plugins/codemirror/theme/night.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/rubyblue.css b/branding/default/js/ckeditor/plugins/codemirror/theme/rubyblue.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/solarized.css b/branding/default/js/ckeditor/plugins/codemirror/theme/solarized.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/twilight.css b/branding/default/js/ckeditor/plugins/codemirror/theme/twilight.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/vibrant-ink.css b/branding/default/js/ckeditor/plugins/codemirror/theme/vibrant-ink.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/xq-dark.css b/branding/default/js/ckeditor/plugins/codemirror/theme/xq-dark.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/icons/bgcolor.png b/branding/default/js/ckeditor/plugins/colorbutton/icons/bgcolor.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/icons/textcolor.png b/branding/default/js/ckeditor/plugins/colorbutton/icons/textcolor.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/af.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/af.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ar.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/bg.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/bg.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/bn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/bn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/bs.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/bs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ca.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/cs.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/cy.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/da.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/da.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/de.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/el.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en-au.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en-au.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en-ca.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en-gb.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en-gb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/eo.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/es.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/es.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/et.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/eu.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/eu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fa.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fi.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fo.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/gl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/gl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/gu.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/gu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/he.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/hi.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/hi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/hr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/hu.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/hu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/is.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/is.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/it.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ja.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ja.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ka.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ka.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/km.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/km.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ko.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ko.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ku.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ku.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/lt.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/lt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/lv.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/mk.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/mk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/mn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/mn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ms.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ms.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/nb.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/nl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/no.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/pl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/pl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/pt-br.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/pt.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/pt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ro.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ro.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ru.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ru.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sk.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sv.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/th.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/th.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/tr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ug.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ug.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/uk.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/uk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/vi.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/vi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/zh.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/zh.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/plugin.js b/branding/default/js/ckeditor/plugins/colorbutton/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/fakeobjects/images/spacer.gif b/branding/default/js/ckeditor/plugins/fakeobjects/images/spacer.gif old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/af.js b/branding/default/js/ckeditor/plugins/font/lang/af.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ar.js b/branding/default/js/ckeditor/plugins/font/lang/ar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/bg.js b/branding/default/js/ckeditor/plugins/font/lang/bg.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/bn.js b/branding/default/js/ckeditor/plugins/font/lang/bn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/bs.js b/branding/default/js/ckeditor/plugins/font/lang/bs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ca.js b/branding/default/js/ckeditor/plugins/font/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/cs.js b/branding/default/js/ckeditor/plugins/font/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/cy.js b/branding/default/js/ckeditor/plugins/font/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/da.js b/branding/default/js/ckeditor/plugins/font/lang/da.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/de.js b/branding/default/js/ckeditor/plugins/font/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/el.js b/branding/default/js/ckeditor/plugins/font/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en-au.js b/branding/default/js/ckeditor/plugins/font/lang/en-au.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en-ca.js b/branding/default/js/ckeditor/plugins/font/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en-gb.js b/branding/default/js/ckeditor/plugins/font/lang/en-gb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en.js b/branding/default/js/ckeditor/plugins/font/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/eo.js b/branding/default/js/ckeditor/plugins/font/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/es.js b/branding/default/js/ckeditor/plugins/font/lang/es.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/et.js b/branding/default/js/ckeditor/plugins/font/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/eu.js b/branding/default/js/ckeditor/plugins/font/lang/eu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fa.js b/branding/default/js/ckeditor/plugins/font/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fi.js b/branding/default/js/ckeditor/plugins/font/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fo.js b/branding/default/js/ckeditor/plugins/font/lang/fo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/font/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fr.js b/branding/default/js/ckeditor/plugins/font/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/gl.js b/branding/default/js/ckeditor/plugins/font/lang/gl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/gu.js b/branding/default/js/ckeditor/plugins/font/lang/gu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/he.js b/branding/default/js/ckeditor/plugins/font/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/hi.js b/branding/default/js/ckeditor/plugins/font/lang/hi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/hr.js b/branding/default/js/ckeditor/plugins/font/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/hu.js b/branding/default/js/ckeditor/plugins/font/lang/hu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/is.js b/branding/default/js/ckeditor/plugins/font/lang/is.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/it.js b/branding/default/js/ckeditor/plugins/font/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ja.js b/branding/default/js/ckeditor/plugins/font/lang/ja.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ka.js b/branding/default/js/ckeditor/plugins/font/lang/ka.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/km.js b/branding/default/js/ckeditor/plugins/font/lang/km.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ko.js b/branding/default/js/ckeditor/plugins/font/lang/ko.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ku.js b/branding/default/js/ckeditor/plugins/font/lang/ku.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/lt.js b/branding/default/js/ckeditor/plugins/font/lang/lt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/lv.js b/branding/default/js/ckeditor/plugins/font/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/mk.js b/branding/default/js/ckeditor/plugins/font/lang/mk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/mn.js b/branding/default/js/ckeditor/plugins/font/lang/mn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ms.js b/branding/default/js/ckeditor/plugins/font/lang/ms.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/nb.js b/branding/default/js/ckeditor/plugins/font/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/nl.js b/branding/default/js/ckeditor/plugins/font/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/no.js b/branding/default/js/ckeditor/plugins/font/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/pl.js b/branding/default/js/ckeditor/plugins/font/lang/pl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/pt-br.js b/branding/default/js/ckeditor/plugins/font/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/pt.js b/branding/default/js/ckeditor/plugins/font/lang/pt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ro.js b/branding/default/js/ckeditor/plugins/font/lang/ro.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ru.js b/branding/default/js/ckeditor/plugins/font/lang/ru.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sk.js b/branding/default/js/ckeditor/plugins/font/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sl.js b/branding/default/js/ckeditor/plugins/font/lang/sl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/font/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sr.js b/branding/default/js/ckeditor/plugins/font/lang/sr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sv.js b/branding/default/js/ckeditor/plugins/font/lang/sv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/th.js b/branding/default/js/ckeditor/plugins/font/lang/th.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/tr.js b/branding/default/js/ckeditor/plugins/font/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ug.js b/branding/default/js/ckeditor/plugins/font/lang/ug.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/uk.js b/branding/default/js/ckeditor/plugins/font/lang/uk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/vi.js b/branding/default/js/ckeditor/plugins/font/lang/vi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/font/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/lang/zh.js b/branding/default/js/ckeditor/plugins/font/lang/zh.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/font/plugin.js b/branding/default/js/ckeditor/plugins/font/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/icons.png b/branding/default/js/ckeditor/plugins/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/image/images/noimage.png b/branding/default/js/ckeditor/plugins/image/images/noimage.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifyblock.png b/branding/default/js/ckeditor/plugins/justify/icons/justifyblock.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifycenter.png b/branding/default/js/ckeditor/plugins/justify/icons/justifycenter.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifyleft.png b/branding/default/js/ckeditor/plugins/justify/icons/justifyleft.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifyright.png b/branding/default/js/ckeditor/plugins/justify/icons/justifyright.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/af.js b/branding/default/js/ckeditor/plugins/justify/lang/af.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ar.js b/branding/default/js/ckeditor/plugins/justify/lang/ar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/bg.js b/branding/default/js/ckeditor/plugins/justify/lang/bg.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/bn.js b/branding/default/js/ckeditor/plugins/justify/lang/bn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/bs.js b/branding/default/js/ckeditor/plugins/justify/lang/bs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ca.js b/branding/default/js/ckeditor/plugins/justify/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/cs.js b/branding/default/js/ckeditor/plugins/justify/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/cy.js b/branding/default/js/ckeditor/plugins/justify/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/da.js b/branding/default/js/ckeditor/plugins/justify/lang/da.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/de.js b/branding/default/js/ckeditor/plugins/justify/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/el.js b/branding/default/js/ckeditor/plugins/justify/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en-au.js b/branding/default/js/ckeditor/plugins/justify/lang/en-au.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en-ca.js b/branding/default/js/ckeditor/plugins/justify/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en-gb.js b/branding/default/js/ckeditor/plugins/justify/lang/en-gb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en.js b/branding/default/js/ckeditor/plugins/justify/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/eo.js b/branding/default/js/ckeditor/plugins/justify/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/es.js b/branding/default/js/ckeditor/plugins/justify/lang/es.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/et.js b/branding/default/js/ckeditor/plugins/justify/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/eu.js b/branding/default/js/ckeditor/plugins/justify/lang/eu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fa.js b/branding/default/js/ckeditor/plugins/justify/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fi.js b/branding/default/js/ckeditor/plugins/justify/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fo.js b/branding/default/js/ckeditor/plugins/justify/lang/fo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/justify/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fr.js b/branding/default/js/ckeditor/plugins/justify/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/gl.js b/branding/default/js/ckeditor/plugins/justify/lang/gl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/gu.js b/branding/default/js/ckeditor/plugins/justify/lang/gu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/he.js b/branding/default/js/ckeditor/plugins/justify/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/hi.js b/branding/default/js/ckeditor/plugins/justify/lang/hi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/hr.js b/branding/default/js/ckeditor/plugins/justify/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/hu.js b/branding/default/js/ckeditor/plugins/justify/lang/hu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/is.js b/branding/default/js/ckeditor/plugins/justify/lang/is.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/it.js b/branding/default/js/ckeditor/plugins/justify/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ja.js b/branding/default/js/ckeditor/plugins/justify/lang/ja.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ka.js b/branding/default/js/ckeditor/plugins/justify/lang/ka.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/km.js b/branding/default/js/ckeditor/plugins/justify/lang/km.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ko.js b/branding/default/js/ckeditor/plugins/justify/lang/ko.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ku.js b/branding/default/js/ckeditor/plugins/justify/lang/ku.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/lt.js b/branding/default/js/ckeditor/plugins/justify/lang/lt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/lv.js b/branding/default/js/ckeditor/plugins/justify/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/mk.js b/branding/default/js/ckeditor/plugins/justify/lang/mk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/mn.js b/branding/default/js/ckeditor/plugins/justify/lang/mn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ms.js b/branding/default/js/ckeditor/plugins/justify/lang/ms.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/nb.js b/branding/default/js/ckeditor/plugins/justify/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/nl.js b/branding/default/js/ckeditor/plugins/justify/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/no.js b/branding/default/js/ckeditor/plugins/justify/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/pl.js b/branding/default/js/ckeditor/plugins/justify/lang/pl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/pt-br.js b/branding/default/js/ckeditor/plugins/justify/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/pt.js b/branding/default/js/ckeditor/plugins/justify/lang/pt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ro.js b/branding/default/js/ckeditor/plugins/justify/lang/ro.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ru.js b/branding/default/js/ckeditor/plugins/justify/lang/ru.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sk.js b/branding/default/js/ckeditor/plugins/justify/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sl.js b/branding/default/js/ckeditor/plugins/justify/lang/sl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/justify/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sr.js b/branding/default/js/ckeditor/plugins/justify/lang/sr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sv.js b/branding/default/js/ckeditor/plugins/justify/lang/sv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/th.js b/branding/default/js/ckeditor/plugins/justify/lang/th.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/tr.js b/branding/default/js/ckeditor/plugins/justify/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ug.js b/branding/default/js/ckeditor/plugins/justify/lang/ug.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/uk.js b/branding/default/js/ckeditor/plugins/justify/lang/uk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/vi.js b/branding/default/js/ckeditor/plugins/justify/lang/vi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/justify/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/zh.js b/branding/default/js/ckeditor/plugins/justify/lang/zh.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/justify/plugin.js b/branding/default/js/ckeditor/plugins/justify/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/link/images/anchor.png b/branding/default/js/ckeditor/plugins/link/images/anchor.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/magicline/images/icon.png b/branding/default/js/ckeditor/plugins/magicline/images/icon.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/menubutton/plugin.js b/branding/default/js/ckeditor/plugins/menubutton/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/panelbutton/plugin.js b/branding/default/js/ckeditor/plugins/panelbutton/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/LICENSE.md b/branding/default/js/ckeditor/plugins/scayt/LICENSE.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/README.md b/branding/default/js/ckeditor/plugins/scayt/README.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/icons/scayt.png b/branding/default/js/ckeditor/plugins/scayt/icons/scayt.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/af.js b/branding/default/js/ckeditor/plugins/scayt/lang/af.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ar.js b/branding/default/js/ckeditor/plugins/scayt/lang/ar.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/bg.js b/branding/default/js/ckeditor/plugins/scayt/lang/bg.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/bn.js b/branding/default/js/ckeditor/plugins/scayt/lang/bn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/bs.js b/branding/default/js/ckeditor/plugins/scayt/lang/bs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ca.js b/branding/default/js/ckeditor/plugins/scayt/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/cs.js b/branding/default/js/ckeditor/plugins/scayt/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/cy.js b/branding/default/js/ckeditor/plugins/scayt/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/da.js b/branding/default/js/ckeditor/plugins/scayt/lang/da.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/de.js b/branding/default/js/ckeditor/plugins/scayt/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/el.js b/branding/default/js/ckeditor/plugins/scayt/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en-au.js b/branding/default/js/ckeditor/plugins/scayt/lang/en-au.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en-ca.js b/branding/default/js/ckeditor/plugins/scayt/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en-gb.js b/branding/default/js/ckeditor/plugins/scayt/lang/en-gb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en.js b/branding/default/js/ckeditor/plugins/scayt/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/eo.js b/branding/default/js/ckeditor/plugins/scayt/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/es.js b/branding/default/js/ckeditor/plugins/scayt/lang/es.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/et.js b/branding/default/js/ckeditor/plugins/scayt/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/eu.js b/branding/default/js/ckeditor/plugins/scayt/lang/eu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fa.js b/branding/default/js/ckeditor/plugins/scayt/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fi.js b/branding/default/js/ckeditor/plugins/scayt/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fo.js b/branding/default/js/ckeditor/plugins/scayt/lang/fo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/scayt/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fr.js b/branding/default/js/ckeditor/plugins/scayt/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/gl.js b/branding/default/js/ckeditor/plugins/scayt/lang/gl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/gu.js b/branding/default/js/ckeditor/plugins/scayt/lang/gu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/he.js b/branding/default/js/ckeditor/plugins/scayt/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/hi.js b/branding/default/js/ckeditor/plugins/scayt/lang/hi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/hr.js b/branding/default/js/ckeditor/plugins/scayt/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/hu.js b/branding/default/js/ckeditor/plugins/scayt/lang/hu.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/is.js b/branding/default/js/ckeditor/plugins/scayt/lang/is.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/it.js b/branding/default/js/ckeditor/plugins/scayt/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ja.js b/branding/default/js/ckeditor/plugins/scayt/lang/ja.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ka.js b/branding/default/js/ckeditor/plugins/scayt/lang/ka.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/km.js b/branding/default/js/ckeditor/plugins/scayt/lang/km.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ko.js b/branding/default/js/ckeditor/plugins/scayt/lang/ko.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ku.js b/branding/default/js/ckeditor/plugins/scayt/lang/ku.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/lt.js b/branding/default/js/ckeditor/plugins/scayt/lang/lt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/lv.js b/branding/default/js/ckeditor/plugins/scayt/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/mk.js b/branding/default/js/ckeditor/plugins/scayt/lang/mk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/mn.js b/branding/default/js/ckeditor/plugins/scayt/lang/mn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ms.js b/branding/default/js/ckeditor/plugins/scayt/lang/ms.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/nb.js b/branding/default/js/ckeditor/plugins/scayt/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/nl.js b/branding/default/js/ckeditor/plugins/scayt/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/no.js b/branding/default/js/ckeditor/plugins/scayt/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/pl.js b/branding/default/js/ckeditor/plugins/scayt/lang/pl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/pt-br.js b/branding/default/js/ckeditor/plugins/scayt/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/pt.js b/branding/default/js/ckeditor/plugins/scayt/lang/pt.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ro.js b/branding/default/js/ckeditor/plugins/scayt/lang/ro.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ru.js b/branding/default/js/ckeditor/plugins/scayt/lang/ru.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sk.js b/branding/default/js/ckeditor/plugins/scayt/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sl.js b/branding/default/js/ckeditor/plugins/scayt/lang/sl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/scayt/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sr.js b/branding/default/js/ckeditor/plugins/scayt/lang/sr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sv.js b/branding/default/js/ckeditor/plugins/scayt/lang/sv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/th.js b/branding/default/js/ckeditor/plugins/scayt/lang/th.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/tr.js b/branding/default/js/ckeditor/plugins/scayt/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ug.js b/branding/default/js/ckeditor/plugins/scayt/lang/ug.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/uk.js b/branding/default/js/ckeditor/plugins/scayt/lang/uk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/vi.js b/branding/default/js/ckeditor/plugins/scayt/lang/vi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/scayt/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/zh.js b/branding/default/js/ckeditor/plugins/scayt/lang/zh.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/scayt/plugin.js b/branding/default/js/ckeditor/plugins/scayt/plugin.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/de.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/de.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/el.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/el.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/en.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/en.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/et.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/et.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/he.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/he.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/it.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/it.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/no.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/no.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/ajax.html b/branding/default/js/ckeditor/samples/ajax.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/api.html b/branding/default/js/ckeditor/samples/api.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/appendto.html b/branding/default/js/ckeditor/samples/appendto.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/assets/inlineall/logo.png b/branding/default/js/ckeditor/samples/assets/inlineall/logo.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css b/branding/default/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/assets/posteddata.php b/branding/default/js/ckeditor/samples/assets/posteddata.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/assets/sample.css b/branding/default/js/ckeditor/samples/assets/sample.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/assets/sample.jpg b/branding/default/js/ckeditor/samples/assets/sample.jpg old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/assets/uilanguages/languages.js b/branding/default/js/ckeditor/samples/assets/uilanguages/languages.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/divreplace.html b/branding/default/js/ckeditor/samples/divreplace.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/index.html b/branding/default/js/ckeditor/samples/index.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/inlineall.html b/branding/default/js/ckeditor/samples/inlineall.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/inlinebycode.html b/branding/default/js/ckeditor/samples/inlinebycode.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/branding/default/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/dialog/dialog.html b/branding/default/js/ckeditor/samples/plugins/dialog/dialog.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/enterkey/enterkey.html b/branding/default/js/ckeditor/samples/plugins/enterkey/enterkey.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla b/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf b/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html b/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/magicline/magicline.html b/branding/default/js/ckeditor/samples/plugins/magicline/magicline.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/toolbar/toolbar.html b/branding/default/js/ckeditor/samples/plugins/toolbar/toolbar.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/branding/default/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/readonly.html b/branding/default/js/ckeditor/samples/readonly.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/replacebyclass.html b/branding/default/js/ckeditor/samples/replacebyclass.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/replacebycode.html b/branding/default/js/ckeditor/samples/replacebycode.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/sample.css b/branding/default/js/ckeditor/samples/sample.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/sample.js b/branding/default/js/ckeditor/samples/sample.js old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/sample_posteddata.php b/branding/default/js/ckeditor/samples/sample_posteddata.php old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/tabindex.html b/branding/default/js/ckeditor/samples/tabindex.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/uicolor.html b/branding/default/js/ckeditor/samples/uicolor.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/uilanguages.html b/branding/default/js/ckeditor/samples/uilanguages.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/samples/xhtmlstyle.html b/branding/default/js/ckeditor/samples/xhtmlstyle.html old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/dialog.css b/branding/default/js/ckeditor/skins/moono/dialog.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_ie.css b/branding/default/js/ckeditor/skins/moono/dialog_ie.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_ie7.css b/branding/default/js/ckeditor/skins/moono/dialog_ie7.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_ie8.css b/branding/default/js/ckeditor/skins/moono/dialog_ie8.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_opera.css b/branding/default/js/ckeditor/skins/moono/dialog_opera.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/editor.css b/branding/default/js/ckeditor/skins/moono/editor.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/editor_gecko.css b/branding/default/js/ckeditor/skins/moono/editor_gecko.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/editor_ie.css b/branding/default/js/ckeditor/skins/moono/editor_ie.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/editor_ie7.css b/branding/default/js/ckeditor/skins/moono/editor_ie7.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/editor_ie8.css b/branding/default/js/ckeditor/skins/moono/editor_ie8.css old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/icons.png b/branding/default/js/ckeditor/skins/moono/icons.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/images/arrow.png b/branding/default/js/ckeditor/skins/moono/images/arrow.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/images/close.png b/branding/default/js/ckeditor/skins/moono/images/close.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/images/mini.png b/branding/default/js/ckeditor/skins/moono/images/mini.png old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/skins/moono/readme.md b/branding/default/js/ckeditor/skins/moono/readme.md old mode 100644 new mode 100755 diff --git a/branding/default/js/ckeditor/styles.js b/branding/default/js/ckeditor/styles.js old mode 100644 new mode 100755 diff --git a/branding/default/js/dashboard.js b/branding/default/js/dashboard.js old mode 100644 new mode 100755 diff --git a/branding/default/js/data.user_fields.js b/branding/default/js/data.user_fields.js old mode 100644 new mode 100755 diff --git a/branding/default/js/date.js b/branding/default/js/date.js old mode 100644 new mode 100755 diff --git a/branding/default/js/datePicker.js b/branding/default/js/datePicker.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.address.js b/branding/default/js/form.address.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.blog.js b/branding/default/js/form.blog.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.coupon.js b/branding/default/js/form.coupon.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.email.js b/branding/default/js/form.email.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.field.js b/branding/default/js/form.field.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.js b/branding/default/js/form.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.plan.js b/branding/default/js/form.plan.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.rss_feed.js b/branding/default/js/form.rss_feed.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.send_email.js b/branding/default/js/form.send_email.js old mode 100644 new mode 100755 diff --git a/branding/default/js/form.transaction.js b/branding/default/js/form.transaction.js old mode 100644 new mode 100755 diff --git a/branding/default/js/image_gallery.js b/branding/default/js/image_gallery.js old mode 100644 new mode 100755 diff --git a/branding/default/js/image_gallery_form.js b/branding/default/js/image_gallery_form.js old mode 100644 new mode 100755 diff --git a/branding/default/js/jquery-1.4.2.js b/branding/default/js/jquery-1.4.2.js old mode 100644 new mode 100755 diff --git a/branding/default/js/jquery.quicksearch.js b/branding/default/js/jquery.quicksearch.js old mode 100644 new mode 100755 diff --git a/branding/default/js/jquery.simplemodal.1.4.min.js b/branding/default/js/jquery.simplemodal.1.4.min.js old mode 100644 new mode 100755 diff --git a/branding/default/js/jquery.sparkline.js b/branding/default/js/jquery.sparkline.js old mode 100644 new mode 100755 diff --git a/branding/default/js/menu_manager.js b/branding/default/js/menu_manager.js old mode 100644 new mode 100755 diff --git a/branding/default/js/product.js b/branding/default/js/product.js old mode 100644 new mode 100755 diff --git a/branding/default/js/product_option.js b/branding/default/js/product_option.js old mode 100644 new mode 100755 diff --git a/branding/default/js/recurring.js b/branding/default/js/recurring.js old mode 100644 new mode 100755 diff --git a/branding/default/js/report.invoice.js b/branding/default/js/report.invoice.js old mode 100644 new mode 100755 diff --git a/branding/default/js/report.products.js b/branding/default/js/report.products.js old mode 100644 new mode 100755 diff --git a/branding/default/js/settings.js b/branding/default/js/settings.js old mode 100644 new mode 100755 diff --git a/branding/default/js/sortable.js b/branding/default/js/sortable.js old mode 100644 new mode 100755 diff --git a/branding/default/js/theme_editor.js b/branding/default/js/theme_editor.js old mode 100644 new mode 100755 diff --git a/branding/default/js/tiptip.min.js b/branding/default/js/tiptip.min.js old mode 100644 new mode 100755 diff --git a/branding/default/js/universal.js b/branding/default/js/universal.js old mode 100644 new mode 100755 diff --git a/codeigniter_license.txt b/codeigniter_license.txt old mode 100644 new mode 100755 diff --git a/hero-os-license.txt b/hero-os-license.txt old mode 100644 new mode 100755 diff --git a/system/core/Common.php b/system/core/Common.php index 07534c51..009caaba 100755 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -253,8 +253,8 @@ function &get_config($replace = array()) } } } - - return $_config[0] =& $config; + $this_config = $_config[0] =& $config; + return $this_config; } } @@ -561,4 +561,4 @@ function html_escape($var) } /* End of file Common.php */ -/* Location: ./system/core/Common.php */ \ No newline at end of file +/* Location: ./system/core/Common.php */ diff --git a/system/core/Security.php b/system/core/Security.php index 00089d76..81162047 100755 --- a/system/core/Security.php +++ b/system/core/Security.php @@ -269,7 +269,7 @@ public function xss_clean($str, $is_image = FALSE) */ if (is_array($str)) { - while (list($key) = each($str)) + foreach($str as $key) { $str[$key] = $this->xss_clean($str[$key]); } diff --git a/system/database/drivers/cubrid/cubrid_driver.php b/system/database/drivers/cubrid/cubrid_driver.php old mode 100644 new mode 100755 diff --git a/system/database/drivers/cubrid/cubrid_forge.php b/system/database/drivers/cubrid/cubrid_forge.php old mode 100644 new mode 100755 diff --git a/system/database/drivers/cubrid/cubrid_result.php b/system/database/drivers/cubrid/cubrid_result.php old mode 100644 new mode 100755 diff --git a/system/database/drivers/cubrid/cubrid_utility.php b/system/database/drivers/cubrid/cubrid_utility.php old mode 100644 new mode 100755 diff --git a/system/database/drivers/cubrid/index.html b/system/database/drivers/cubrid/index.html old mode 100644 new mode 100755 diff --git a/system/database/drivers/pdo/index.html b/system/database/drivers/pdo/index.html old mode 100644 new mode 100755 diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php old mode 100644 new mode 100755 diff --git a/system/database/drivers/pdo/pdo_forge.php b/system/database/drivers/pdo/pdo_forge.php old mode 100644 new mode 100755 diff --git a/system/database/drivers/pdo/pdo_result.php b/system/database/drivers/pdo/pdo_result.php old mode 100644 new mode 100755 diff --git a/system/database/drivers/pdo/pdo_utility.php b/system/database/drivers/pdo/pdo_utility.php old mode 100644 new mode 100755 diff --git a/system/language/english/migration_lang.php b/system/language/english/migration_lang.php old mode 100644 new mode 100755 diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php old mode 100644 new mode 100755 diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php index d702e902..b2b3432d 100755 --- a/system/libraries/Xmlrpc.php +++ b/system/libraries/Xmlrpc.php @@ -548,30 +548,25 @@ function xmlrpc_decoder($xmlrpc_val) { $kind = $xmlrpc_val->kindOf(); - if ($kind == 'scalar') - { + if ($kind == 'scalar') { return $xmlrpc_val->scalarval(); - } - elseif ($kind == 'array') - { + } elseif ($kind == 'array') { reset($xmlrpc_val->me); - list($a,$b) = each($xmlrpc_val->me); - $size = count($b); - $arr = array(); - - for ($i = 0; $i < $size; $i++) - { - $arr[] = $this->xmlrpc_decoder($xmlrpc_val->me['array'][$i]); + foreach($xmlrpc_val->me as $a => $b){ + $size = count($b); + + + for ($i = 0; $i < $size; $i++) { + $arr[] = $this->xmlrpc_decoder($xmlrpc_val->me['array'][$i]); + } } return $arr; - } - elseif ($kind == 'struct') - { + } elseif ($kind == 'struct') { reset($xmlrpc_val->me['struct']); $arr = array(); - while (list($key,$value) = each($xmlrpc_val->me['struct'])) + foreach($xmlrpc_val->me['struct'] as $key => $value) { $arr[$key] = $this->xmlrpc_decoder($value); } @@ -1169,13 +1164,13 @@ function decode_message($param) elseif ($kind == 'array') { reset($param->me); - list($a,$b) = each($param->me); - $arr = array(); + foreach($param->me as $a => $b){ - for($i = 0; $i < count($b); $i++) - { - $arr[] = $this->decode_message($param->me['array'][$i]); + for($i = 0; $i < count($b); $i++) + { + $arr[] = $this->decode_message($param->me['array'][$i]); + } } return $arr; @@ -1186,7 +1181,7 @@ function decode_message($param) $arr = array(); - while (list($key,$value) = each($param->me['struct'])) + foreach($param->me['struct'] as $key => $value) { $arr[$key] = $this->decode_message($value); } @@ -1331,7 +1326,7 @@ function serializedata($typ, $val) // struct $rs .= "\n"; reset($val); - while (list($key2, $val2) = each($val)) + foreach($val as $key2 => $val2) { $rs .= "\n{$key2}\n"; $rs .= $this->serializeval($val2); @@ -1381,15 +1376,17 @@ function serializeval($o) $ar = $o->me; reset($ar); - list($typ, $val) = each($ar); - $rs = "\n".$this->serializedata($typ, $val)."\n"; + $typ = array_keys($ar); + $val = array_values($ar); + $rs = "\n".$this->serializedata($typ[0], $val[0])."\n"; return $rs; } function scalarval() { reset($this->me); - list($a,$b) = each($this->me); + $a = array_keys($this->me); + $b = array_values($this->me); return $b; } diff --git a/system/libraries/Xmlrpcs.php b/system/libraries/Xmlrpcs.php index 9cd33214..fb4b81e3 100755 --- a/system/libraries/Xmlrpcs.php +++ b/system/libraries/Xmlrpcs.php @@ -585,8 +585,10 @@ function do_multicall($call) return $this->multicall_error('notarray'); } - list($a,$b)=each($params->me); - $numParams = count($b); + //list($a,$b)=each($params->me); + $b = array_values($params->me); + + $numParams = count($b[0]); $msg = new XML_RPC_Message($scalar_value); for ($i = 0; $i < $numParams; $i++) diff --git a/themes/_common/jquery-1.4.2.min.js b/themes/_common/jquery-1.4.2.min.js old mode 100644 new mode 100755 diff --git a/themes/_common/preview.jpg b/themes/_common/preview.jpg old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/LICENSE b/themes/_common/shadowbox/LICENSE old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/README b/themes/_common/shadowbox/README old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/close.png b/themes/_common/shadowbox/close.png old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/expressInstall.swf b/themes/_common/shadowbox/expressInstall.swf old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/loading.gif b/themes/_common/shadowbox/loading.gif old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/next.png b/themes/_common/shadowbox/next.png old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/pause.png b/themes/_common/shadowbox/pause.png old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/play.png b/themes/_common/shadowbox/play.png old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/player.swf b/themes/_common/shadowbox/player.swf old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/previous.png b/themes/_common/shadowbox/previous.png old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/shadowbox.css b/themes/_common/shadowbox/shadowbox.css old mode 100644 new mode 100755 diff --git a/themes/_common/shadowbox/shadowbox.js b/themes/_common/shadowbox/shadowbox.js old mode 100644 new mode 100755 diff --git a/themes/_plugins/block.module_installed.php b/themes/_plugins/block.module_installed.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/block.restricted.php b/themes/_plugins/block.restricted.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.money_format.php b/themes/_plugins/function.money_format.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.paginate.php b/themes/_plugins/function.paginate.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.setting.php b/themes/_plugins/function.setting.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.shorten.php b/themes/_plugins/function.shorten.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.theme_url.php b/themes/_plugins/function.theme_url.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.thumbnail.php b/themes/_plugins/function.thumbnail.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.url.php b/themes/_plugins/function.url.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/function.xss_clean.php b/themes/_plugins/function.xss_clean.php old mode 100644 new mode 100755 diff --git a/themes/_plugins/modifier.parse_as_template.php b/themes/_plugins/modifier.parse_as_template.php old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/cancel_subscription.thtml b/themes/cubed/account_templates/cancel_subscription.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/change_password.thtml b/themes/cubed/account_templates/change_password.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/forgot_password.thtml b/themes/cubed/account_templates/forgot_password.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/forgot_password_complete.thtml b/themes/cubed/account_templates/forgot_password_complete.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/home.thtml b/themes/cubed/account_templates/home.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/invoice.thtml b/themes/cubed/account_templates/invoice.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/invoices.thtml b/themes/cubed/account_templates/invoices.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/login.thtml b/themes/cubed/account_templates/login.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/profile.thtml b/themes/cubed/account_templates/profile.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/account_templates/registration.thtml b/themes/cubed/account_templates/registration.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/archives.thtml b/themes/cubed/archives.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/blog.thtml b/themes/cubed/blog.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/account.thtml b/themes/cubed/checkout_templates/account.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/billing_shipping.thtml b/themes/cubed/checkout_templates/billing_shipping.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/checkout_layout.thtml b/themes/cubed/checkout_templates/checkout_layout.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/complete.thtml b/themes/cubed/checkout_templates/complete.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/free_confirm.thtml b/themes/cubed/checkout_templates/free_confirm.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/payment.thtml b/themes/cubed/checkout_templates/payment.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/register.thtml b/themes/cubed/checkout_templates/register.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/checkout_templates/shipping_method.thtml b/themes/cubed/checkout_templates/shipping_method.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/content.thtml b/themes/cubed/content.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/css/universal.css b/themes/cubed/css/universal.css old mode 100644 new mode 100755 diff --git a/themes/cubed/form.thtml b/themes/cubed/form.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/frontpage.thtml b/themes/cubed/frontpage.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/images/banner.jpg b/themes/cubed/images/banner.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/button.gif b/themes/cubed/images/button.gif old mode 100644 new mode 100755 diff --git a/themes/cubed/images/footer_corner.gif b/themes/cubed/images/footer_corner.gif old mode 100644 new mode 100755 diff --git a/themes/cubed/images/logo.jpg b/themes/cubed/images/logo.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/navbar_back.gif b/themes/cubed/images/navbar_back.gif old mode 100644 new mode 100755 diff --git a/themes/cubed/images/navbar_left.gif b/themes/cubed/images/navbar_left.gif old mode 100644 new mode 100755 diff --git a/themes/cubed/images/placeholders/apples.jpg b/themes/cubed/images/placeholders/apples.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/placeholders/blueberries.jpg b/themes/cubed/images/placeholders/blueberries.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/placeholders/cherries.jpg b/themes/cubed/images/placeholders/cherries.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/placeholders/oranges.jpg b/themes/cubed/images/placeholders/oranges.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/placeholders/pears.jpg b/themes/cubed/images/placeholders/pears.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/placeholders/strawberries.jpg b/themes/cubed/images/placeholders/strawberries.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/images/sideleft.gif b/themes/cubed/images/sideleft.gif old mode 100644 new mode 100755 diff --git a/themes/cubed/install.php b/themes/cubed/install.php old mode 100644 new mode 100755 diff --git a/themes/cubed/js/checkout.js b/themes/cubed/js/checkout.js old mode 100644 new mode 100755 diff --git a/themes/cubed/js/form.js b/themes/cubed/js/form.js old mode 100644 new mode 100755 diff --git a/themes/cubed/js/universal.js b/themes/cubed/js/universal.js old mode 100644 new mode 100755 diff --git a/themes/cubed/layout.thtml b/themes/cubed/layout.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/members_content.thtml b/themes/cubed/members_content.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/news_post.thtml b/themes/cubed/news_post.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/paywall.thtml b/themes/cubed/paywall.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/preview.jpg b/themes/cubed/preview.jpg old mode 100644 new mode 100755 diff --git a/themes/cubed/rss_feed.txml b/themes/cubed/rss_feed.txml old mode 100644 new mode 100755 diff --git a/themes/cubed/search.thtml b/themes/cubed/search.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/static_page.thtml b/themes/cubed/static_page.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/store_cart.thtml b/themes/cubed/store_cart.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/store_listing.thtml b/themes/cubed/store_listing.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/store_product.thtml b/themes/cubed/store_product.thtml old mode 100644 new mode 100755 diff --git a/themes/cubed/subscriptions.thtml b/themes/cubed/subscriptions.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/cancel_subscription.thtml b/themes/electric/account_templates/cancel_subscription.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/change_password.thtml b/themes/electric/account_templates/change_password.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/forgot_password.thtml b/themes/electric/account_templates/forgot_password.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/forgot_password_complete.thtml b/themes/electric/account_templates/forgot_password_complete.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/home.thtml b/themes/electric/account_templates/home.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/invoice.thtml b/themes/electric/account_templates/invoice.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/invoices.thtml b/themes/electric/account_templates/invoices.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/login.thtml b/themes/electric/account_templates/login.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/profile.thtml b/themes/electric/account_templates/profile.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/account_templates/registration.thtml b/themes/electric/account_templates/registration.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/archives.thtml b/themes/electric/archives.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/blog_post.thtml b/themes/electric/blog_post.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/account.thtml b/themes/electric/checkout_templates/account.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/billing_shipping.thtml b/themes/electric/checkout_templates/billing_shipping.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/checkout_layout.thtml b/themes/electric/checkout_templates/checkout_layout.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/complete.thtml b/themes/electric/checkout_templates/complete.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/free_confirm.thtml b/themes/electric/checkout_templates/free_confirm.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/payment.thtml b/themes/electric/checkout_templates/payment.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/register.thtml b/themes/electric/checkout_templates/register.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/checkout_templates/shipping_method.thtml b/themes/electric/checkout_templates/shipping_method.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/content.thtml b/themes/electric/content.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/css/universal.css b/themes/electric/css/universal.css old mode 100644 new mode 100755 diff --git a/themes/electric/event.thtml b/themes/electric/event.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/events.thtml b/themes/electric/events.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/form.thtml b/themes/electric/form.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/frontpage.thtml b/themes/electric/frontpage.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/images/body_back.jpg b/themes/electric/images/body_back.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/button.gif b/themes/electric/images/button.gif old mode 100644 new mode 100755 diff --git a/themes/electric/images/content_back.gif b/themes/electric/images/content_back.gif old mode 100644 new mode 100755 diff --git a/themes/electric/images/header_back.jpg b/themes/electric/images/header_back.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/logo.png b/themes/electric/images/logo.png old mode 100644 new mode 100755 diff --git a/themes/electric/images/nav_separator.png b/themes/electric/images/nav_separator.png old mode 100644 new mode 100755 diff --git a/themes/electric/images/navigation_back.jpg b/themes/electric/images/navigation_back.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/apples.jpg b/themes/electric/images/placeholders/apples.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/blueberries.jpg b/themes/electric/images/placeholders/blueberries.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/blueberries2.jpg b/themes/electric/images/placeholders/blueberries2.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/cleaning.png b/themes/electric/images/placeholders/cleaning.png old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/download.jpg b/themes/electric/images/placeholders/download.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/hero.jpg b/themes/electric/images/placeholders/hero.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/house.jpg b/themes/electric/images/placeholders/house.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/newyears.jpg b/themes/electric/images/placeholders/newyears.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/oranges.jpg b/themes/electric/images/placeholders/oranges.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/placeholders/strawberries.jpg b/themes/electric/images/placeholders/strawberries.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/images/post.gif b/themes/electric/images/post.gif old mode 100644 new mode 100755 diff --git a/themes/electric/images/sidebar_body.gif b/themes/electric/images/sidebar_body.gif old mode 100644 new mode 100755 diff --git a/themes/electric/images/sidebar_foot.gif b/themes/electric/images/sidebar_foot.gif old mode 100644 new mode 100755 diff --git a/themes/electric/images/sidebar_head.gif b/themes/electric/images/sidebar_head.gif old mode 100644 new mode 100755 diff --git a/themes/electric/images/wrapper_back.gif b/themes/electric/images/wrapper_back.gif old mode 100644 new mode 100755 diff --git a/themes/electric/install.php b/themes/electric/install.php old mode 100644 new mode 100755 diff --git a/themes/electric/js/checkout.js b/themes/electric/js/checkout.js old mode 100644 new mode 100755 diff --git a/themes/electric/js/form.js b/themes/electric/js/form.js old mode 100644 new mode 100755 diff --git a/themes/electric/js/universal.js b/themes/electric/js/universal.js old mode 100644 new mode 100755 diff --git a/themes/electric/layout.thtml b/themes/electric/layout.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/paywall.thtml b/themes/electric/paywall.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/preview.jpg b/themes/electric/preview.jpg old mode 100644 new mode 100755 diff --git a/themes/electric/rss_feed.txml b/themes/electric/rss_feed.txml old mode 100644 new mode 100755 diff --git a/themes/electric/search.thtml b/themes/electric/search.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/store_cart.thtml b/themes/electric/store_cart.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/store_listing.thtml b/themes/electric/store_listing.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/store_product.thtml b/themes/electric/store_product.thtml old mode 100644 new mode 100755 diff --git a/themes/electric/subscriptions.thtml b/themes/electric/subscriptions.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/cancel_subscription.thtml b/themes/night_jungle/account_templates/cancel_subscription.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/change_password.thtml b/themes/night_jungle/account_templates/change_password.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/forgot_password.thtml b/themes/night_jungle/account_templates/forgot_password.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/forgot_password_complete.thtml b/themes/night_jungle/account_templates/forgot_password_complete.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/home.thtml b/themes/night_jungle/account_templates/home.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/invoice.thtml b/themes/night_jungle/account_templates/invoice.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/invoices.thtml b/themes/night_jungle/account_templates/invoices.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/login.thtml b/themes/night_jungle/account_templates/login.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/profile.thtml b/themes/night_jungle/account_templates/profile.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/account_templates/registration.thtml b/themes/night_jungle/account_templates/registration.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/archives.thtml b/themes/night_jungle/archives.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/blog.thtml b/themes/night_jungle/blog.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/account.thtml b/themes/night_jungle/checkout_templates/account.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/billing_shipping.thtml b/themes/night_jungle/checkout_templates/billing_shipping.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/checkout_layout.thtml b/themes/night_jungle/checkout_templates/checkout_layout.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/complete.thtml b/themes/night_jungle/checkout_templates/complete.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/free_confirm.thtml b/themes/night_jungle/checkout_templates/free_confirm.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/payment.thtml b/themes/night_jungle/checkout_templates/payment.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/register.thtml b/themes/night_jungle/checkout_templates/register.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/checkout_templates/shipping_method.thtml b/themes/night_jungle/checkout_templates/shipping_method.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/content.thtml b/themes/night_jungle/content.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/css/universal.css b/themes/night_jungle/css/universal.css old mode 100644 new mode 100755 diff --git a/themes/night_jungle/form.thtml b/themes/night_jungle/form.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/frontpage.thtml b/themes/night_jungle/frontpage.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/back.jpg b/themes/night_jungle/images/back.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/button.gif b/themes/night_jungle/images/button.gif old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/logo.png b/themes/night_jungle/images/logo.png old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/placeholders/apples.jpg b/themes/night_jungle/images/placeholders/apples.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/placeholders/blueberries.jpg b/themes/night_jungle/images/placeholders/blueberries.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/placeholders/cherries.jpg b/themes/night_jungle/images/placeholders/cherries.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/placeholders/oranges.jpg b/themes/night_jungle/images/placeholders/oranges.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/placeholders/pears.jpg b/themes/night_jungle/images/placeholders/pears.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/placeholders/strawberries.jpg b/themes/night_jungle/images/placeholders/strawberries.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/post.png b/themes/night_jungle/images/post.png old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/tiger.jpg b/themes/night_jungle/images/tiger.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/images/translucent.png b/themes/night_jungle/images/translucent.png old mode 100644 new mode 100755 diff --git a/themes/night_jungle/install.php b/themes/night_jungle/install.php old mode 100644 new mode 100755 diff --git a/themes/night_jungle/js/checkout.js b/themes/night_jungle/js/checkout.js old mode 100644 new mode 100755 diff --git a/themes/night_jungle/js/form.js b/themes/night_jungle/js/form.js old mode 100644 new mode 100755 diff --git a/themes/night_jungle/js/universal.js b/themes/night_jungle/js/universal.js old mode 100644 new mode 100755 diff --git a/themes/night_jungle/layout.thtml b/themes/night_jungle/layout.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/members_content.thtml b/themes/night_jungle/members_content.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/paywall.thtml b/themes/night_jungle/paywall.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/preview.jpg b/themes/night_jungle/preview.jpg old mode 100644 new mode 100755 diff --git a/themes/night_jungle/rss_feed.txml b/themes/night_jungle/rss_feed.txml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/search.thtml b/themes/night_jungle/search.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/static_page.thtml b/themes/night_jungle/static_page.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/store_cart.thtml b/themes/night_jungle/store_cart.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/store_listing.thtml b/themes/night_jungle/store_listing.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/store_product.thtml b/themes/night_jungle/store_product.thtml old mode 100644 new mode 100755 diff --git a/themes/night_jungle/subscriptions.thtml b/themes/night_jungle/subscriptions.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/cancel_subscription.thtml b/themes/orchard/account_templates/cancel_subscription.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/change_password.thtml b/themes/orchard/account_templates/change_password.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/forgot_password.thtml b/themes/orchard/account_templates/forgot_password.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/forgot_password_complete.thtml b/themes/orchard/account_templates/forgot_password_complete.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/home.thtml b/themes/orchard/account_templates/home.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/invoice.thtml b/themes/orchard/account_templates/invoice.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/invoices.thtml b/themes/orchard/account_templates/invoices.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/login.thtml b/themes/orchard/account_templates/login.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/profile.thtml b/themes/orchard/account_templates/profile.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/account_templates/registration.thtml b/themes/orchard/account_templates/registration.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/archives.thtml b/themes/orchard/archives.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/blog.thtml b/themes/orchard/blog.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/account.thtml b/themes/orchard/checkout_templates/account.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/billing_shipping.thtml b/themes/orchard/checkout_templates/billing_shipping.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/checkout_layout.thtml b/themes/orchard/checkout_templates/checkout_layout.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/complete.thtml b/themes/orchard/checkout_templates/complete.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/free_confirm.thtml b/themes/orchard/checkout_templates/free_confirm.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/payment.thtml b/themes/orchard/checkout_templates/payment.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/register.thtml b/themes/orchard/checkout_templates/register.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/checkout_templates/shipping_method.thtml b/themes/orchard/checkout_templates/shipping_method.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/content.thtml b/themes/orchard/content.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/css/universal.css b/themes/orchard/css/universal.css old mode 100644 new mode 100755 diff --git a/themes/orchard/form.thtml b/themes/orchard/form.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/frontpage.thtml b/themes/orchard/frontpage.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/images/banner.jpg b/themes/orchard/images/banner.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/images/button.gif b/themes/orchard/images/button.gif old mode 100644 new mode 100755 diff --git a/themes/orchard/images/logo.jpg b/themes/orchard/images/logo.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/images/placeholders/apples.jpg b/themes/orchard/images/placeholders/apples.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/images/placeholders/blueberries.jpg b/themes/orchard/images/placeholders/blueberries.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/images/placeholders/cherries.jpg b/themes/orchard/images/placeholders/cherries.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/images/placeholders/oranges.jpg b/themes/orchard/images/placeholders/oranges.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/images/placeholders/pears.jpg b/themes/orchard/images/placeholders/pears.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/images/placeholders/strawberries.jpg b/themes/orchard/images/placeholders/strawberries.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/install.php b/themes/orchard/install.php old mode 100644 new mode 100755 diff --git a/themes/orchard/js/checkout.js b/themes/orchard/js/checkout.js old mode 100644 new mode 100755 diff --git a/themes/orchard/js/form.js b/themes/orchard/js/form.js old mode 100644 new mode 100755 diff --git a/themes/orchard/js/universal.js b/themes/orchard/js/universal.js old mode 100644 new mode 100755 diff --git a/themes/orchard/layout.thtml b/themes/orchard/layout.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/news_post.thtml b/themes/orchard/news_post.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/paywall.thtml b/themes/orchard/paywall.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/preview.jpg b/themes/orchard/preview.jpg old mode 100644 new mode 100755 diff --git a/themes/orchard/rss_feed.txml b/themes/orchard/rss_feed.txml old mode 100644 new mode 100755 diff --git a/themes/orchard/search.thtml b/themes/orchard/search.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/static_page.thtml b/themes/orchard/static_page.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/store_cart.thtml b/themes/orchard/store_cart.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/store_listing.thtml b/themes/orchard/store_listing.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/store_product.thtml b/themes/orchard/store_product.thtml old mode 100644 new mode 100755 diff --git a/themes/orchard/subscriptions.thtml b/themes/orchard/subscriptions.thtml old mode 100644 new mode 100755 diff --git a/writeable/email_templates/.htaccess b/writeable/email_templates/.htaccess new file mode 100755 index 00000000..a74a8eda --- /dev/null +++ b/writeable/email_templates/.htaccess @@ -0,0 +1,3 @@ + +Deny from all + \ No newline at end of file diff --git a/writeable/email_templates/email_layout.thtml b/writeable/email_templates/email_layout.thtml new file mode 100755 index 00000000..96610b33 --- /dev/null +++ b/writeable/email_templates/email_layout.thtml @@ -0,0 +1,18 @@ + + + + + + +
    + {block name="body"} + + {/block} + + {setting name="email_signature"} +
    + + \ No newline at end of file diff --git a/writeable/email_templates/index.html b/writeable/email_templates/index.html new file mode 100755 index 00000000..e69de29b diff --git a/writeable/email_templates/member_forgot_password_2_body.thtml b/writeable/email_templates/member_forgot_password_2_body.thtml new file mode 100755 index 00000000..317d8561 --- /dev/null +++ b/writeable/email_templates/member_forgot_password_2_body.thtml @@ -0,0 +1,13 @@ +{extends file="email_layout.thtml"} + +{block name="body"} +

    Hi {$member.first_name},

    + +

    You requested a new password at {$site_name}. Your new login information is below.

    + +

    Username: {$member.username}

    +

    Password: {$new_password}

    + +Click here to login now. + +{/block} \ No newline at end of file diff --git a/writeable/email_templates/member_forgot_password_2_subject.thtml b/writeable/email_templates/member_forgot_password_2_subject.thtml new file mode 100755 index 00000000..aff2a4f6 --- /dev/null +++ b/writeable/email_templates/member_forgot_password_2_subject.thtml @@ -0,0 +1 @@ +Your new password \ No newline at end of file diff --git a/writeable/email_templates/member_register_1_body.thtml b/writeable/email_templates/member_register_1_body.thtml new file mode 100755 index 00000000..32483f9b --- /dev/null +++ b/writeable/email_templates/member_register_1_body.thtml @@ -0,0 +1,13 @@ +{extends file="email_layout.thtml"} + +{block name="body"} +

    Hi {$member.first_name},

    + +

    Thank you for registering an account at {$site_name}. Your account details are below:

    + +

    Username: {$member.username}

    +

    Password: {$password}

    + +Click here to login now. + +{/block} \ No newline at end of file diff --git a/writeable/email_templates/member_register_1_subject.thtml b/writeable/email_templates/member_register_1_subject.thtml new file mode 100755 index 00000000..8123a1e1 --- /dev/null +++ b/writeable/email_templates/member_register_1_subject.thtml @@ -0,0 +1 @@ +{$site_name}: Account Details \ No newline at end of file diff --git a/writeable/email_templates/member_validate_email_3_body.thtml b/writeable/email_templates/member_validate_email_3_body.thtml new file mode 100755 index 00000000..5dca42fa --- /dev/null +++ b/writeable/email_templates/member_validate_email_3_body.thtml @@ -0,0 +1,12 @@ +{extends file="email_layout.thtml"} + +{block name="body"} +

    Hi {$member.first_name},

    + +

    Before your account is fully activated, you must validate your email address. You only have to do this once so that we know that we have your proper email address linked to your account.

    + +

    To validate your email and activate your account, please go to:

    + +{$validation_link} + +{/block} \ No newline at end of file diff --git a/writeable/email_templates/member_validate_email_3_subject.thtml b/writeable/email_templates/member_validate_email_3_subject.thtml new file mode 100755 index 00000000..e4078c64 --- /dev/null +++ b/writeable/email_templates/member_validate_email_3_subject.thtml @@ -0,0 +1 @@ +Please validate your email \ No newline at end of file From 0ecf949d89bb5cf1925f33ce79068a45b71114af Mon Sep 17 00:00:00 2001 From: root Date: Thu, 21 Mar 2019 22:07:44 -0400 Subject: [PATCH 3/4] fixing bad permissions --- .gitignore | 0 .htaccess | 0 1.htaccess | 0 README.md | 0 app/config/autoload.php | 0 app/config/config.example.php | 0 app/config/constants.php | 0 app/config/core_modules.php | 0 app/config/database.format.php | 0 app/config/default_routes.php | 0 app/config/doctypes.php | 0 app/config/email.php | 0 app/config/foreign_chars.php | 0 app/config/hooks.php | 0 app/config/index.html | 0 app/config/mimes.php | 0 app/config/pagination.php | 0 app/config/profiler.php | 0 app/config/routes.php | 0 app/config/smileys.php | 0 app/config/user_agents.php | 0 app/config/version.php | 0 app/controllers/admincp/dashboard.php | 0 app/controllers/admincp/dataset.php | 0 app/controllers/admincp/login.php | 0 app/controllers/cron.php | 0 app/controllers/error.php | 0 app/controllers/frontpage.php | 0 app/controllers/index.html | 0 app/controllers/install.php | 0 app/core/MY_Controller.php | 0 app/core/MY_Input.php | 0 app/core/MY_Loader.php | 0 app/core/MY_Router.php | 0 app/errors/error_404.php | 0 app/errors/error_db.php | 0 app/errors/error_general.php | 0 app/errors/error_php.php | 0 app/errors/index.html | 0 app/helpers/MY_url_helper.php | 0 app/helpers/admincp/admin_link_helper.php | 0 app/helpers/admincp/dataset_link_helper.php | 0 app/helpers/admincp/get_notices_helper.php | 0 app/helpers/admincp/url_string_helper.php | 0 app/helpers/array_to_json_helper.php | 0 app/helpers/branding/branded_include_helper.php | 0 app/helpers/branding/branded_view_helper.php | 0 app/helpers/clean_string_helper.php | 0 app/helpers/cron_log_helper.php | 0 app/helpers/file_extension_helper.php | 0 app/helpers/filter_directory_helper.php | 0 app/helpers/format_size_helper.php | 0 app/helpers/format_street_address_helper.php | 0 app/helpers/get_available_image_library_helper.php | 0 app/helpers/image_thumb_helper.php | 0 app/helpers/index.html | 0 app/helpers/install_redirect_helper.php | 0 app/helpers/local_time_helper.php | 0 app/helpers/module_installed_helper.php | 0 app/helpers/money_format_helper.php | 0 app/helpers/query_value_helper.php | 0 app/helpers/setting_helper.php | 0 app/helpers/shorten_helper.php | 0 app/helpers/ssl_helper.php | 0 app/helpers/states_helper.php | 0 app/helpers/strip_whitespace_helper.php | 0 app/helpers/template_files_helper.php | 0 app/helpers/time_since_helper.php | 0 app/helpers/unique_email_helper.php | 0 app/helpers/unique_username_helper.php | 0 app/helpers/valid_domain_helper.php | 0 app/helpers/verify_password_helper.php | 0 app/helpers/xml_value_prep_helper.php | 0 app/hooks/index.html | 0 app/index.html | 0 app/language/english/control_panel_lang.php | 0 app/language/english/index.html | 0 app/libraries/MY_Cart.php | 0 app/libraries/MY_Email.php | 0 app/libraries/MY_Upload.php | 0 app/libraries/admin_form.php | 0 app/libraries/admin_navigation.php | 0 app/libraries/app_hooks.php | 0 app/libraries/array_to_csv.php | 0 app/libraries/array_to_xml.php | 0 app/libraries/asciihex.php | 0 app/libraries/auto_updater.php | 0 app/libraries/controllers/Admincp_Controller.php | 0 app/libraries/controllers/Front_Controller.php | 0 app/libraries/dataset.php | 0 app/libraries/field_validation.php | 0 app/libraries/head_assets.php | 0 app/libraries/head_compile.php | 0 app/libraries/image_gallery_form.php | 0 app/libraries/index.html | 0 app/libraries/inflect.php | 0 app/libraries/jsmin.php | 0 app/libraries/key.php | 0 app/libraries/module.php | 0 app/libraries/notices.php | 0 app/libraries/response.php | 0 app/libraries/smarty.php | 0 app/libraries/smarty/Smarty.class.php | 0 app/libraries/smarty/plugins/block.php.php | 0 app/libraries/smarty/plugins/block.textformat.php | 0 app/libraries/smarty/plugins/function.counter.php | 0 app/libraries/smarty/plugins/function.cycle.php | 0 app/libraries/smarty/plugins/function.fetch.php | 0 .../smarty/plugins/function.html_checkboxes.php | 0 .../smarty/plugins/function.html_image.php | 0 .../smarty/plugins/function.html_options.php | 0 .../smarty/plugins/function.html_radios.php | 0 .../smarty/plugins/function.html_select_date.php | 0 .../smarty/plugins/function.html_select_time.php | 0 .../smarty/plugins/function.html_table.php | 0 app/libraries/smarty/plugins/function.mailto.php | 0 app/libraries/smarty/plugins/function.math.php | 0 app/libraries/smarty/plugins/function.popup.php | 0 .../smarty/plugins/function.popup_init.php | 0 .../smarty/plugins/modifier.capitalize.php | 0 .../smarty/plugins/modifier.date_format.php | 0 .../smarty/plugins/modifier.debug_print_var.php | 0 app/libraries/smarty/plugins/modifier.escape.php | 0 .../smarty/plugins/modifier.regex_replace.php | 0 app/libraries/smarty/plugins/modifier.replace.php | 0 app/libraries/smarty/plugins/modifier.spacify.php | 0 app/libraries/smarty/plugins/modifier.truncate.php | 0 .../smarty/plugins/modifiercompiler.cat.php | 0 .../plugins/modifiercompiler.count_characters.php | 0 .../plugins/modifiercompiler.count_paragraphs.php | 0 .../plugins/modifiercompiler.count_sentences.php | 0 .../smarty/plugins/modifiercompiler.count_words.php | 0 .../smarty/plugins/modifiercompiler.default.php | 0 .../smarty/plugins/modifiercompiler.indent.php | 0 .../smarty/plugins/modifiercompiler.lower.php | 0 .../smarty/plugins/modifiercompiler.noprint.php | 0 .../plugins/modifiercompiler.string_format.php | 0 .../smarty/plugins/modifiercompiler.strip.php | 0 .../smarty/plugins/modifiercompiler.strip_tags.php | 0 .../smarty/plugins/modifiercompiler.upper.php | 0 .../smarty/plugins/modifiercompiler.wordwrap.php | 0 .../smarty/plugins/outputfilter.trimwhitespace.php | 0 .../smarty/plugins/shared.escape_special_chars.php | 0 .../smarty/plugins/shared.make_timestamp.php | 0 .../plugins/variablefilter.htmlspecialchars.php | 0 .../smarty_internal_cacheresource_file.php | 0 .../sysplugins/smarty_internal_compile_append.php | 0 .../sysplugins/smarty_internal_compile_assign.php | 0 .../sysplugins/smarty_internal_compile_block.php | 0 .../sysplugins/smarty_internal_compile_break.php | 0 .../sysplugins/smarty_internal_compile_call.php | 0 .../sysplugins/smarty_internal_compile_capture.php | 0 .../smarty_internal_compile_config_load.php | 0 .../sysplugins/smarty_internal_compile_continue.php | 0 .../sysplugins/smarty_internal_compile_debug.php | 0 .../sysplugins/smarty_internal_compile_eval.php | 0 .../sysplugins/smarty_internal_compile_extends.php | 0 .../sysplugins/smarty_internal_compile_for.php | 0 .../sysplugins/smarty_internal_compile_foreach.php | 0 .../sysplugins/smarty_internal_compile_function.php | 0 .../sysplugins/smarty_internal_compile_if.php | 0 .../sysplugins/smarty_internal_compile_include.php | 0 .../smarty_internal_compile_include_php.php | 0 .../sysplugins/smarty_internal_compile_insert.php | 0 .../sysplugins/smarty_internal_compile_ldelim.php | 0 .../sysplugins/smarty_internal_compile_nocache.php | 0 ...smarty_internal_compile_private_block_plugin.php | 0 ...rty_internal_compile_private_function_plugin.php | 0 .../smarty_internal_compile_private_modifier.php | 0 ...ternal_compile_private_object_block_function.php | 0 ...rty_internal_compile_private_object_function.php | 0 ...ty_internal_compile_private_print_expression.php | 0 ...ty_internal_compile_private_registered_block.php | 0 ...internal_compile_private_registered_function.php | 0 ...ty_internal_compile_private_special_variable.php | 0 .../sysplugins/smarty_internal_compile_rdelim.php | 0 .../sysplugins/smarty_internal_compile_section.php | 0 .../sysplugins/smarty_internal_compile_while.php | 0 .../sysplugins/smarty_internal_compilebase.php | 0 .../smarty/sysplugins/smarty_internal_config.php | 0 .../smarty_internal_config_file_compiler.php | 0 .../sysplugins/smarty_internal_configfilelexer.php | 0 .../sysplugins/smarty_internal_configfileparser.php | 0 .../smarty/sysplugins/smarty_internal_data.php | 0 .../smarty/sysplugins/smarty_internal_debug.php | 0 .../smarty/sysplugins/smarty_internal_filter.php | 0 .../sysplugins/smarty_internal_filter_handler.php | 0 .../smarty_internal_function_call_handler.php | 0 .../sysplugins/smarty_internal_nocache_insert.php | 0 .../smarty/sysplugins/smarty_internal_parsetree.php | 0 .../smarty/sysplugins/smarty_internal_register.php | 0 .../sysplugins/smarty_internal_resource_eval.php | 0 .../sysplugins/smarty_internal_resource_extends.php | 0 .../sysplugins/smarty_internal_resource_file.php | 0 .../sysplugins/smarty_internal_resource_php.php | 0 .../smarty_internal_resource_registered.php | 0 .../sysplugins/smarty_internal_resource_stream.php | 0 .../sysplugins/smarty_internal_resource_string.php | 0 .../smarty_internal_smartytemplatecompiler.php | 0 .../smarty/sysplugins/smarty_internal_template.php | 0 .../smarty_internal_templatecompilerbase.php | 0 .../sysplugins/smarty_internal_templatelexer.php | 0 .../sysplugins/smarty_internal_templateparser.php | 0 .../smarty/sysplugins/smarty_internal_utility.php | 0 .../smarty/sysplugins/smarty_internal_wrapper.php | 0 .../sysplugins/smarty_internal_write_file.php | 0 app/libraries/smarty/sysplugins/smarty_security.php | 0 app/libraries/stats.php | 0 app/models/admincp/notices.php | 0 app/models/custom_fields_model.php | 0 app/models/index.html | 0 app/models/install_model.php | 0 app/models/link_model.php | 0 app/models/states_model.php | 0 app/modules/blogs/blogs.php | 0 app/modules/blogs/controllers/admincp.php | 0 app/modules/blogs/controllers/blog.php | 0 app/modules/blogs/models/blog_model.php | 0 app/modules/blogs/views/blog_form.php | 0 app/modules/blogs/views/blogs.php | 0 app/modules/custom_fields/controllers/admincp.php | 0 app/modules/custom_fields/custom_fields.php | 0 app/modules/custom_fields/libraries/fieldtype.php | 0 .../custom_fields/libraries/fieldtypes/checkbox.php | 0 .../custom_fields/libraries/fieldtypes/date.php | 0 .../custom_fields/libraries/fieldtypes/datetime.php | 0 .../libraries/fieldtypes/file_upload.php | 0 .../fieldtypes/member_group_relationship.php | 0 .../libraries/fieldtypes/multicheckbox.php | 0 .../libraries/fieldtypes/multiselect.php | 0 .../custom_fields/libraries/fieldtypes/radio.php | 0 .../libraries/fieldtypes/relationship.php | 0 .../custom_fields/libraries/fieldtypes/select.php | 0 .../fieldtypes/subscription_relationship.php | 0 .../custom_fields/libraries/fieldtypes/text.php | 0 .../custom_fields/libraries/fieldtypes/textarea.php | 0 .../libraries/fieldtypes/topic_relationship.php | 0 .../custom_fields/libraries/fieldtypes/wysiwyg.php | 0 .../custom_fields/libraries/form_builder.php | 0 .../template_plugins/function.custom_field.php | 0 app/modules/custom_fields/views/arrange_fields.php | 0 app/modules/custom_fields/views/custom_fields.php | 0 app/modules/custom_fields/views/field_form.php | 0 app/modules/emails/controllers/admincp.php | 0 app/modules/emails/emails.php | 0 app/modules/emails/models/email_model.php | 0 app/modules/emails/models/email_template_model.php | 0 .../emails/template_import/email_layout.thtml | 0 .../template_import/member_forgot_password.thtml | 0 .../emails/template_import/member_register.thtml | 0 .../template_import/member_validate_email.thtml | 0 .../emails/template_import/store_order.thtml | 0 .../store_order_product_downloadable.thtml | 0 .../template_import/subscription_charge.thtml | 0 .../template_import/subscription_expire.thtml | 0 app/modules/emails/views/email_form.php | 0 app/modules/emails/views/email_layout.php | 0 app/modules/emails/views/emails.php | 0 app/modules/emails/views/select_hook.php | 0 app/modules/emails/views/send.php | 0 app/modules/forms/controllers/admincp.php | 0 app/modules/forms/controllers/form.php | 0 app/modules/forms/forms.php | 0 app/modules/forms/models/form_model.php | 0 app/modules/forms/template_plugins/block.form.php | 0 app/modules/forms/views/fields.php | 0 app/modules/forms/views/form.php | 0 app/modules/forms/views/forms.php | 0 app/modules/forms/views/response.php | 0 app/modules/forms/views/responses.php | 0 app/modules/googleanalytics/controllers/admincp.php | 0 app/modules/googleanalytics/googleanalytics.php | 0 .../outputfilter.googleanalytics.php | 0 app/modules/googleanalytics/views/generic.php | 0 app/modules/import/controllers/admincp.php | 0 app/modules/import/import.php | 0 app/modules/import/views/fields.php | 0 app/modules/import/views/index.php | 0 app/modules/import/views/results.php | 0 app/modules/menu_manager/controllers/admincp.php | 0 app/modules/menu_manager/menu_manager.php | 0 app/modules/menu_manager/models/menu_model.php | 0 .../menu_manager/template_plugins/function.menu.php | 0 app/modules/menu_manager/views/links.php | 0 app/modules/menu_manager/views/menu_form.php | 0 app/modules/menu_manager/views/menu_manager.php | 0 app/modules/menu_manager/views/possible_links.php | 0 app/modules/modules/models/module_model.php | 0 app/modules/paywall/controllers/admincp.php | 0 app/modules/paywall/controllers/protected_link.php | 0 app/modules/paywall/helpers/paywall_helper.php | 0 app/modules/paywall/paywall.php | 0 .../template_plugins/function.protected_link.php | 0 app/modules/paywall/views/paywall_configuration.php | 0 app/modules/publish/controllers/admincp.php | 0 app/modules/publish/controllers/content.php | 0 app/modules/publish/models/content_model.php | 0 app/modules/publish/models/content_type_model.php | 0 app/modules/publish/models/topic_model.php | 0 app/modules/publish/publish.php | 0 .../publish/template_plugins/block.content.php | 0 .../template_plugins/block.content_in_topic.php | 0 .../publish/template_plugins/block.topics.php | 0 app/modules/publish/views/content.php | 0 app/modules/publish/views/content_non_standard.php | 0 app/modules/publish/views/content_standard.php | 0 app/modules/publish/views/content_types.php | 0 app/modules/publish/views/create_post.php | 0 app/modules/publish/views/create_type.php | 0 app/modules/publish/views/topic_form.php | 0 app/modules/publish/views/topics.php | 0 app/modules/publish/views/type_fields.php | 0 app/modules/publish/views/type_form.php | 0 app/modules/reports/controllers/admincp.php | 0 app/modules/reports/reports.php | 0 app/modules/reports/views/cancellations.php | 0 app/modules/reports/views/coupons.php | 0 app/modules/reports/views/cronjob.php | 0 app/modules/reports/views/expirations.php | 0 app/modules/reports/views/invoice.php | 0 app/modules/reports/views/invoices.php | 0 app/modules/reports/views/mark_refund.php | 0 app/modules/reports/views/popular.php | 0 app/modules/reports/views/products.php | 0 app/modules/reports/views/registrations.php | 0 app/modules/reports/views/subscriptions.php | 0 app/modules/reports/views/taxes.php | 0 app/modules/rss/controllers/admincp.php | 0 app/modules/rss/controllers/feed.php | 0 app/modules/rss/models/rss_model.php | 0 app/modules/rss/rss.php | 0 app/modules/rss/views/feed_form.php | 0 app/modules/rss/views/rss_feeds.php | 0 app/modules/search/controllers/admincp.php | 0 app/modules/search/controllers/search.php | 0 app/modules/search/libraries/search_results.php | 0 app/modules/search/search.php | 0 app/modules/search/views/search_configuration.php | 0 app/modules/settings/controllers/admincp.php | 0 app/modules/settings/models/settings_model.php | 0 app/modules/settings/settings.php | 0 .../settings/views/module_uninstall_confirm.php | 0 app/modules/settings/views/modules.php | 0 app/modules/settings/views/settings.php | 0 app/modules/theme/controllers/admincp.php | 0 app/modules/theme/controllers/template.php | 0 app/modules/theme/models/theme_model.php | 0 app/modules/theme/theme.php | 0 app/modules/theme/views/editor.php | 0 app/modules/theme/views/install_complete.php | 0 app/modules/theme/views/install_confirm.php | 0 app/modules/theme/views/themes.php | 0 app/modules/users/controllers/admincp.php | 0 app/modules/users/controllers/user_activity.php | 0 app/modules/users/controllers/users.php | 0 app/modules/users/models/login_model.php | 0 app/modules/users/models/user_model.php | 0 app/modules/users/models/usergroup_model.php | 0 .../users/template_plugins/block.in_group.php | 0 .../users/template_plugins/block.login_form.php | 0 .../users/template_plugins/block.members.php | 0 .../users/template_plugins/block.not_in_group.php | 0 .../template_plugins/block.registration_form.php | 0 .../template_plugins/outputfilter.user_activity.php | 0 app/modules/users/users.php | 0 app/modules/users/views/data.php | 0 app/modules/users/views/group_form.php | 0 app/modules/users/views/groups.php | 0 app/modules/users/views/logins.php | 0 app/modules/users/views/member_list_config.php | 0 app/modules/users/views/profile.php | 0 app/modules/users/views/user_form.php | 0 app/modules/users/views/users.php | 0 app/third_party/MX/Base.php | 0 app/third_party/MX/Ci.php | 0 app/third_party/MX/Config.php | 0 app/third_party/MX/Controller.php | 0 app/third_party/MX/Lang.php | 0 app/third_party/MX/Loader.php | 0 app/third_party/MX/Modules.php | 0 app/third_party/MX/Router.php | 0 app/updates/3.01.php | 0 app/updates/3.02.php | 0 app/updates/3.03.php | 0 app/updates/3.35.php | 0 app/updates/3.38.php | 0 app/updates/3.39.php | 0 app/updates/3.40.php | 0 app/updates/3.69.php | 0 app/updates/install.php | 0 codeigniter_license.txt | 0 hero-os-license.txt | 0 index.php | 0 system/core/Benchmark.php | 0 system/core/CodeIgniter.php | 0 system/core/Common.php | 0 system/core/Config.php | 0 system/core/Controller.php | 0 system/core/Exceptions.php | 0 system/core/Hooks.php | 0 system/core/Input.php | 0 system/core/Lang.php | 0 system/core/Loader.php | 0 system/core/Model.php | 0 system/core/Output.php | 0 system/core/Router.php | 0 system/core/Security.php | 0 system/core/URI.php | 0 system/core/Utf8.php | 0 system/core/index.html | 0 system/database/DB.php | 0 system/database/DB_active_rec.php | 0 system/database/DB_cache.php | 0 system/database/DB_driver.php | 0 system/database/DB_forge.php | 0 system/database/DB_result.php | 0 system/database/DB_utility.php | 0 system/database/drivers/cubrid/cubrid_driver.php | 0 system/database/drivers/cubrid/cubrid_forge.php | 0 system/database/drivers/cubrid/cubrid_result.php | 0 system/database/drivers/cubrid/cubrid_utility.php | 0 system/database/drivers/cubrid/index.html | 0 system/database/drivers/index.html | 0 system/database/drivers/mssql/index.html | 0 system/database/drivers/mssql/mssql_driver.php | 0 system/database/drivers/mssql/mssql_forge.php | 0 system/database/drivers/mssql/mssql_result.php | 0 system/database/drivers/mssql/mssql_utility.php | 0 system/database/drivers/mysql/index.html | 0 system/database/drivers/mysql/mysql_driver.php | 0 system/database/drivers/mysql/mysql_forge.php | 0 system/database/drivers/mysql/mysql_result.php | 0 system/database/drivers/mysql/mysql_utility.php | 0 system/database/drivers/mysqli/index.html | 0 system/database/drivers/mysqli/mysqli_driver.php | 0 system/database/drivers/mysqli/mysqli_forge.php | 0 system/database/drivers/mysqli/mysqli_result.php | 0 system/database/drivers/mysqli/mysqli_utility.php | 0 system/database/drivers/oci8/index.html | 0 system/database/drivers/oci8/oci8_driver.php | 0 system/database/drivers/oci8/oci8_forge.php | 0 system/database/drivers/oci8/oci8_result.php | 0 system/database/drivers/oci8/oci8_utility.php | 0 system/database/drivers/odbc/index.html | 0 system/database/drivers/odbc/odbc_driver.php | 0 system/database/drivers/odbc/odbc_forge.php | 0 system/database/drivers/odbc/odbc_result.php | 0 system/database/drivers/odbc/odbc_utility.php | 0 system/database/drivers/pdo/index.html | 0 system/database/drivers/pdo/pdo_driver.php | 0 system/database/drivers/pdo/pdo_forge.php | 0 system/database/drivers/pdo/pdo_result.php | 0 system/database/drivers/pdo/pdo_utility.php | 0 system/database/drivers/postgre/index.html | 0 system/database/drivers/postgre/postgre_driver.php | 0 system/database/drivers/postgre/postgre_forge.php | 0 system/database/drivers/postgre/postgre_result.php | 0 system/database/drivers/postgre/postgre_utility.php | 0 system/database/drivers/sqlite/index.html | 0 system/database/drivers/sqlite/sqlite_driver.php | 0 system/database/drivers/sqlite/sqlite_forge.php | 0 system/database/drivers/sqlite/sqlite_result.php | 0 system/database/drivers/sqlite/sqlite_utility.php | 0 system/database/drivers/sqlsrv/index.html | 0 system/database/drivers/sqlsrv/sqlsrv_driver.php | 0 system/database/drivers/sqlsrv/sqlsrv_forge.php | 0 system/database/drivers/sqlsrv/sqlsrv_result.php | 0 system/database/drivers/sqlsrv/sqlsrv_utility.php | 0 system/database/index.html | 0 system/fonts/index.html | 0 system/fonts/texb.ttf | Bin system/helpers/array_helper.php | 0 system/helpers/captcha_helper.php | 0 system/helpers/cookie_helper.php | 0 system/helpers/date_helper.php | 0 system/helpers/directory_helper.php | 0 system/helpers/download_helper.php | 0 system/helpers/email_helper.php | 0 system/helpers/file_helper.php | 0 system/helpers/form_helper.php | 0 system/helpers/html_helper.php | 0 system/helpers/index.html | 0 system/helpers/inflector_helper.php | 0 system/helpers/language_helper.php | 0 system/helpers/number_helper.php | 0 system/helpers/path_helper.php | 0 system/helpers/security_helper.php | 0 system/helpers/smiley_helper.php | 0 system/helpers/string_helper.php | 0 system/helpers/text_helper.php | 0 system/helpers/typography_helper.php | 0 system/helpers/url_helper.php | 0 system/helpers/xml_helper.php | 0 system/index.html | 0 system/language/english/calendar_lang.php | 0 system/language/english/date_lang.php | 0 system/language/english/db_lang.php | 0 system/language/english/email_lang.php | 0 system/language/english/form_validation_lang.php | 0 system/language/english/ftp_lang.php | 0 system/language/english/imglib_lang.php | 0 system/language/english/index.html | 0 system/language/english/migration_lang.php | 0 system/language/english/number_lang.php | 0 system/language/english/profiler_lang.php | 0 system/language/english/unit_test_lang.php | 0 system/language/english/upload_lang.php | 0 system/language/index.html | 0 system/libraries/Cache/Cache.php | 0 system/libraries/Cache/drivers/Cache_apc.php | 0 system/libraries/Cache/drivers/Cache_dummy.php | 0 system/libraries/Cache/drivers/Cache_file.php | 0 system/libraries/Cache/drivers/Cache_memcached.php | 0 system/libraries/Calendar.php | 0 system/libraries/Cart.php | 0 system/libraries/Driver.php | 0 system/libraries/Email.php | 0 system/libraries/Encrypt.php | 0 system/libraries/Form_validation.php | 0 system/libraries/Ftp.php | 0 system/libraries/Image_lib.php | 0 system/libraries/Javascript.php | 0 system/libraries/Log.php | 0 system/libraries/Migration.php | 0 system/libraries/Pagination.php | 0 system/libraries/Parser.php | 0 system/libraries/Profiler.php | 0 system/libraries/Session.php | 0 system/libraries/Sha1.php | 0 system/libraries/Table.php | 0 system/libraries/Trackback.php | 0 system/libraries/Typography.php | 0 system/libraries/Unit_test.php | 0 system/libraries/Upload.php | 0 system/libraries/User_agent.php | 0 system/libraries/Xmlrpc.php | 0 system/libraries/Xmlrpcs.php | 0 system/libraries/Zip.php | 0 system/libraries/index.html | 0 system/libraries/javascript/Jquery.php | 0 540 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 .gitignore mode change 100755 => 100644 .htaccess mode change 100755 => 100644 1.htaccess mode change 100755 => 100644 README.md mode change 100755 => 100644 app/config/autoload.php mode change 100755 => 100644 app/config/config.example.php mode change 100755 => 100644 app/config/constants.php mode change 100755 => 100644 app/config/core_modules.php mode change 100755 => 100644 app/config/database.format.php mode change 100755 => 100644 app/config/default_routes.php mode change 100755 => 100644 app/config/doctypes.php mode change 100755 => 100644 app/config/email.php mode change 100755 => 100644 app/config/foreign_chars.php mode change 100755 => 100644 app/config/hooks.php mode change 100755 => 100644 app/config/index.html mode change 100755 => 100644 app/config/mimes.php mode change 100755 => 100644 app/config/pagination.php mode change 100755 => 100644 app/config/profiler.php mode change 100755 => 100644 app/config/routes.php mode change 100755 => 100644 app/config/smileys.php mode change 100755 => 100644 app/config/user_agents.php mode change 100755 => 100644 app/config/version.php mode change 100755 => 100644 app/controllers/admincp/dashboard.php mode change 100755 => 100644 app/controllers/admincp/dataset.php mode change 100755 => 100644 app/controllers/admincp/login.php mode change 100755 => 100644 app/controllers/cron.php mode change 100755 => 100644 app/controllers/error.php mode change 100755 => 100644 app/controllers/frontpage.php mode change 100755 => 100644 app/controllers/index.html mode change 100755 => 100644 app/controllers/install.php mode change 100755 => 100644 app/core/MY_Controller.php mode change 100755 => 100644 app/core/MY_Input.php mode change 100755 => 100644 app/core/MY_Loader.php mode change 100755 => 100644 app/core/MY_Router.php mode change 100755 => 100644 app/errors/error_404.php mode change 100755 => 100644 app/errors/error_db.php mode change 100755 => 100644 app/errors/error_general.php mode change 100755 => 100644 app/errors/error_php.php mode change 100755 => 100644 app/errors/index.html mode change 100755 => 100644 app/helpers/MY_url_helper.php mode change 100755 => 100644 app/helpers/admincp/admin_link_helper.php mode change 100755 => 100644 app/helpers/admincp/dataset_link_helper.php mode change 100755 => 100644 app/helpers/admincp/get_notices_helper.php mode change 100755 => 100644 app/helpers/admincp/url_string_helper.php mode change 100755 => 100644 app/helpers/array_to_json_helper.php mode change 100755 => 100644 app/helpers/branding/branded_include_helper.php mode change 100755 => 100644 app/helpers/branding/branded_view_helper.php mode change 100755 => 100644 app/helpers/clean_string_helper.php mode change 100755 => 100644 app/helpers/cron_log_helper.php mode change 100755 => 100644 app/helpers/file_extension_helper.php mode change 100755 => 100644 app/helpers/filter_directory_helper.php mode change 100755 => 100644 app/helpers/format_size_helper.php mode change 100755 => 100644 app/helpers/format_street_address_helper.php mode change 100755 => 100644 app/helpers/get_available_image_library_helper.php mode change 100755 => 100644 app/helpers/image_thumb_helper.php mode change 100755 => 100644 app/helpers/index.html mode change 100755 => 100644 app/helpers/install_redirect_helper.php mode change 100755 => 100644 app/helpers/local_time_helper.php mode change 100755 => 100644 app/helpers/module_installed_helper.php mode change 100755 => 100644 app/helpers/money_format_helper.php mode change 100755 => 100644 app/helpers/query_value_helper.php mode change 100755 => 100644 app/helpers/setting_helper.php mode change 100755 => 100644 app/helpers/shorten_helper.php mode change 100755 => 100644 app/helpers/ssl_helper.php mode change 100755 => 100644 app/helpers/states_helper.php mode change 100755 => 100644 app/helpers/strip_whitespace_helper.php mode change 100755 => 100644 app/helpers/template_files_helper.php mode change 100755 => 100644 app/helpers/time_since_helper.php mode change 100755 => 100644 app/helpers/unique_email_helper.php mode change 100755 => 100644 app/helpers/unique_username_helper.php mode change 100755 => 100644 app/helpers/valid_domain_helper.php mode change 100755 => 100644 app/helpers/verify_password_helper.php mode change 100755 => 100644 app/helpers/xml_value_prep_helper.php mode change 100755 => 100644 app/hooks/index.html mode change 100755 => 100644 app/index.html mode change 100755 => 100644 app/language/english/control_panel_lang.php mode change 100755 => 100644 app/language/english/index.html mode change 100755 => 100644 app/libraries/MY_Cart.php mode change 100755 => 100644 app/libraries/MY_Email.php mode change 100755 => 100644 app/libraries/MY_Upload.php mode change 100755 => 100644 app/libraries/admin_form.php mode change 100755 => 100644 app/libraries/admin_navigation.php mode change 100755 => 100644 app/libraries/app_hooks.php mode change 100755 => 100644 app/libraries/array_to_csv.php mode change 100755 => 100644 app/libraries/array_to_xml.php mode change 100755 => 100644 app/libraries/asciihex.php mode change 100755 => 100644 app/libraries/auto_updater.php mode change 100755 => 100644 app/libraries/controllers/Admincp_Controller.php mode change 100755 => 100644 app/libraries/controllers/Front_Controller.php mode change 100755 => 100644 app/libraries/dataset.php mode change 100755 => 100644 app/libraries/field_validation.php mode change 100755 => 100644 app/libraries/head_assets.php mode change 100755 => 100644 app/libraries/head_compile.php mode change 100755 => 100644 app/libraries/image_gallery_form.php mode change 100755 => 100644 app/libraries/index.html mode change 100755 => 100644 app/libraries/inflect.php mode change 100755 => 100644 app/libraries/jsmin.php mode change 100755 => 100644 app/libraries/key.php mode change 100755 => 100644 app/libraries/module.php mode change 100755 => 100644 app/libraries/notices.php mode change 100755 => 100644 app/libraries/response.php mode change 100755 => 100644 app/libraries/smarty.php mode change 100755 => 100644 app/libraries/smarty/Smarty.class.php mode change 100755 => 100644 app/libraries/smarty/plugins/block.php.php mode change 100755 => 100644 app/libraries/smarty/plugins/block.textformat.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.counter.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.cycle.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.fetch.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.html_checkboxes.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.html_image.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.html_options.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.html_radios.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.html_select_date.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.html_select_time.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.html_table.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.mailto.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.math.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.popup.php mode change 100755 => 100644 app/libraries/smarty/plugins/function.popup_init.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.capitalize.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.date_format.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.debug_print_var.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.escape.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.regex_replace.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.replace.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.spacify.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifier.truncate.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.cat.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.count_characters.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.count_paragraphs.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.count_sentences.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.count_words.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.default.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.indent.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.lower.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.noprint.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.string_format.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.strip.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.strip_tags.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.upper.php mode change 100755 => 100644 app/libraries/smarty/plugins/modifiercompiler.wordwrap.php mode change 100755 => 100644 app/libraries/smarty/plugins/outputfilter.trimwhitespace.php mode change 100755 => 100644 app/libraries/smarty/plugins/shared.escape_special_chars.php mode change 100755 => 100644 app/libraries/smarty/plugins/shared.make_timestamp.php mode change 100755 => 100644 app/libraries/smarty/plugins/variablefilter.htmlspecialchars.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_cacheresource_file.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_append.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_assign.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_block.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_break.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_call.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_capture.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_config_load.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_continue.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_debug.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_eval.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_extends.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_for.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_foreach.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_function.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_if.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_include.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_include_php.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_insert.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_ldelim.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_nocache.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_modifier.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_function.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_print_expression.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_block.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_function.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_private_special_variable.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_rdelim.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_section.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compile_while.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_compilebase.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_config.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_config_file_compiler.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_configfilelexer.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_configfileparser.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_data.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_debug.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_filter.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_filter_handler.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_function_call_handler.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_nocache_insert.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_parsetree.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_register.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_resource_eval.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_resource_extends.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_resource_file.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_resource_php.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_resource_registered.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_resource_stream.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_resource_string.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_template.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_templatecompilerbase.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_templatelexer.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_templateparser.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_utility.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_wrapper.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_internal_write_file.php mode change 100755 => 100644 app/libraries/smarty/sysplugins/smarty_security.php mode change 100755 => 100644 app/libraries/stats.php mode change 100755 => 100644 app/models/admincp/notices.php mode change 100755 => 100644 app/models/custom_fields_model.php mode change 100755 => 100644 app/models/index.html mode change 100755 => 100644 app/models/install_model.php mode change 100755 => 100644 app/models/link_model.php mode change 100755 => 100644 app/models/states_model.php mode change 100755 => 100644 app/modules/blogs/blogs.php mode change 100755 => 100644 app/modules/blogs/controllers/admincp.php mode change 100755 => 100644 app/modules/blogs/controllers/blog.php mode change 100755 => 100644 app/modules/blogs/models/blog_model.php mode change 100755 => 100644 app/modules/blogs/views/blog_form.php mode change 100755 => 100644 app/modules/blogs/views/blogs.php mode change 100755 => 100644 app/modules/custom_fields/controllers/admincp.php mode change 100755 => 100644 app/modules/custom_fields/custom_fields.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtype.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/checkbox.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/date.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/datetime.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/file_upload.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/member_group_relationship.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/multicheckbox.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/multiselect.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/radio.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/relationship.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/select.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/subscription_relationship.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/text.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/textarea.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/topic_relationship.php mode change 100755 => 100644 app/modules/custom_fields/libraries/fieldtypes/wysiwyg.php mode change 100755 => 100644 app/modules/custom_fields/libraries/form_builder.php mode change 100755 => 100644 app/modules/custom_fields/template_plugins/function.custom_field.php mode change 100755 => 100644 app/modules/custom_fields/views/arrange_fields.php mode change 100755 => 100644 app/modules/custom_fields/views/custom_fields.php mode change 100755 => 100644 app/modules/custom_fields/views/field_form.php mode change 100755 => 100644 app/modules/emails/controllers/admincp.php mode change 100755 => 100644 app/modules/emails/emails.php mode change 100755 => 100644 app/modules/emails/models/email_model.php mode change 100755 => 100644 app/modules/emails/models/email_template_model.php mode change 100755 => 100644 app/modules/emails/template_import/email_layout.thtml mode change 100755 => 100644 app/modules/emails/template_import/member_forgot_password.thtml mode change 100755 => 100644 app/modules/emails/template_import/member_register.thtml mode change 100755 => 100644 app/modules/emails/template_import/member_validate_email.thtml mode change 100755 => 100644 app/modules/emails/template_import/store_order.thtml mode change 100755 => 100644 app/modules/emails/template_import/store_order_product_downloadable.thtml mode change 100755 => 100644 app/modules/emails/template_import/subscription_charge.thtml mode change 100755 => 100644 app/modules/emails/template_import/subscription_expire.thtml mode change 100755 => 100644 app/modules/emails/views/email_form.php mode change 100755 => 100644 app/modules/emails/views/email_layout.php mode change 100755 => 100644 app/modules/emails/views/emails.php mode change 100755 => 100644 app/modules/emails/views/select_hook.php mode change 100755 => 100644 app/modules/emails/views/send.php mode change 100755 => 100644 app/modules/forms/controllers/admincp.php mode change 100755 => 100644 app/modules/forms/controllers/form.php mode change 100755 => 100644 app/modules/forms/forms.php mode change 100755 => 100644 app/modules/forms/models/form_model.php mode change 100755 => 100644 app/modules/forms/template_plugins/block.form.php mode change 100755 => 100644 app/modules/forms/views/fields.php mode change 100755 => 100644 app/modules/forms/views/form.php mode change 100755 => 100644 app/modules/forms/views/forms.php mode change 100755 => 100644 app/modules/forms/views/response.php mode change 100755 => 100644 app/modules/forms/views/responses.php mode change 100755 => 100644 app/modules/googleanalytics/controllers/admincp.php mode change 100755 => 100644 app/modules/googleanalytics/googleanalytics.php mode change 100755 => 100644 app/modules/googleanalytics/template_plugins/outputfilter.googleanalytics.php mode change 100755 => 100644 app/modules/googleanalytics/views/generic.php mode change 100755 => 100644 app/modules/import/controllers/admincp.php mode change 100755 => 100644 app/modules/import/import.php mode change 100755 => 100644 app/modules/import/views/fields.php mode change 100755 => 100644 app/modules/import/views/index.php mode change 100755 => 100644 app/modules/import/views/results.php mode change 100755 => 100644 app/modules/menu_manager/controllers/admincp.php mode change 100755 => 100644 app/modules/menu_manager/menu_manager.php mode change 100755 => 100644 app/modules/menu_manager/models/menu_model.php mode change 100755 => 100644 app/modules/menu_manager/template_plugins/function.menu.php mode change 100755 => 100644 app/modules/menu_manager/views/links.php mode change 100755 => 100644 app/modules/menu_manager/views/menu_form.php mode change 100755 => 100644 app/modules/menu_manager/views/menu_manager.php mode change 100755 => 100644 app/modules/menu_manager/views/possible_links.php mode change 100755 => 100644 app/modules/modules/models/module_model.php mode change 100755 => 100644 app/modules/paywall/controllers/admincp.php mode change 100755 => 100644 app/modules/paywall/controllers/protected_link.php mode change 100755 => 100644 app/modules/paywall/helpers/paywall_helper.php mode change 100755 => 100644 app/modules/paywall/paywall.php mode change 100755 => 100644 app/modules/paywall/template_plugins/function.protected_link.php mode change 100755 => 100644 app/modules/paywall/views/paywall_configuration.php mode change 100755 => 100644 app/modules/publish/controllers/admincp.php mode change 100755 => 100644 app/modules/publish/controllers/content.php mode change 100755 => 100644 app/modules/publish/models/content_model.php mode change 100755 => 100644 app/modules/publish/models/content_type_model.php mode change 100755 => 100644 app/modules/publish/models/topic_model.php mode change 100755 => 100644 app/modules/publish/publish.php mode change 100755 => 100644 app/modules/publish/template_plugins/block.content.php mode change 100755 => 100644 app/modules/publish/template_plugins/block.content_in_topic.php mode change 100755 => 100644 app/modules/publish/template_plugins/block.topics.php mode change 100755 => 100644 app/modules/publish/views/content.php mode change 100755 => 100644 app/modules/publish/views/content_non_standard.php mode change 100755 => 100644 app/modules/publish/views/content_standard.php mode change 100755 => 100644 app/modules/publish/views/content_types.php mode change 100755 => 100644 app/modules/publish/views/create_post.php mode change 100755 => 100644 app/modules/publish/views/create_type.php mode change 100755 => 100644 app/modules/publish/views/topic_form.php mode change 100755 => 100644 app/modules/publish/views/topics.php mode change 100755 => 100644 app/modules/publish/views/type_fields.php mode change 100755 => 100644 app/modules/publish/views/type_form.php mode change 100755 => 100644 app/modules/reports/controllers/admincp.php mode change 100755 => 100644 app/modules/reports/reports.php mode change 100755 => 100644 app/modules/reports/views/cancellations.php mode change 100755 => 100644 app/modules/reports/views/coupons.php mode change 100755 => 100644 app/modules/reports/views/cronjob.php mode change 100755 => 100644 app/modules/reports/views/expirations.php mode change 100755 => 100644 app/modules/reports/views/invoice.php mode change 100755 => 100644 app/modules/reports/views/invoices.php mode change 100755 => 100644 app/modules/reports/views/mark_refund.php mode change 100755 => 100644 app/modules/reports/views/popular.php mode change 100755 => 100644 app/modules/reports/views/products.php mode change 100755 => 100644 app/modules/reports/views/registrations.php mode change 100755 => 100644 app/modules/reports/views/subscriptions.php mode change 100755 => 100644 app/modules/reports/views/taxes.php mode change 100755 => 100644 app/modules/rss/controllers/admincp.php mode change 100755 => 100644 app/modules/rss/controllers/feed.php mode change 100755 => 100644 app/modules/rss/models/rss_model.php mode change 100755 => 100644 app/modules/rss/rss.php mode change 100755 => 100644 app/modules/rss/views/feed_form.php mode change 100755 => 100644 app/modules/rss/views/rss_feeds.php mode change 100755 => 100644 app/modules/search/controllers/admincp.php mode change 100755 => 100644 app/modules/search/controllers/search.php mode change 100755 => 100644 app/modules/search/libraries/search_results.php mode change 100755 => 100644 app/modules/search/search.php mode change 100755 => 100644 app/modules/search/views/search_configuration.php mode change 100755 => 100644 app/modules/settings/controllers/admincp.php mode change 100755 => 100644 app/modules/settings/models/settings_model.php mode change 100755 => 100644 app/modules/settings/settings.php mode change 100755 => 100644 app/modules/settings/views/module_uninstall_confirm.php mode change 100755 => 100644 app/modules/settings/views/modules.php mode change 100755 => 100644 app/modules/settings/views/settings.php mode change 100755 => 100644 app/modules/theme/controllers/admincp.php mode change 100755 => 100644 app/modules/theme/controllers/template.php mode change 100755 => 100644 app/modules/theme/models/theme_model.php mode change 100755 => 100644 app/modules/theme/theme.php mode change 100755 => 100644 app/modules/theme/views/editor.php mode change 100755 => 100644 app/modules/theme/views/install_complete.php mode change 100755 => 100644 app/modules/theme/views/install_confirm.php mode change 100755 => 100644 app/modules/theme/views/themes.php mode change 100755 => 100644 app/modules/users/controllers/admincp.php mode change 100755 => 100644 app/modules/users/controllers/user_activity.php mode change 100755 => 100644 app/modules/users/controllers/users.php mode change 100755 => 100644 app/modules/users/models/login_model.php mode change 100755 => 100644 app/modules/users/models/user_model.php mode change 100755 => 100644 app/modules/users/models/usergroup_model.php mode change 100755 => 100644 app/modules/users/template_plugins/block.in_group.php mode change 100755 => 100644 app/modules/users/template_plugins/block.login_form.php mode change 100755 => 100644 app/modules/users/template_plugins/block.members.php mode change 100755 => 100644 app/modules/users/template_plugins/block.not_in_group.php mode change 100755 => 100644 app/modules/users/template_plugins/block.registration_form.php mode change 100755 => 100644 app/modules/users/template_plugins/outputfilter.user_activity.php mode change 100755 => 100644 app/modules/users/users.php mode change 100755 => 100644 app/modules/users/views/data.php mode change 100755 => 100644 app/modules/users/views/group_form.php mode change 100755 => 100644 app/modules/users/views/groups.php mode change 100755 => 100644 app/modules/users/views/logins.php mode change 100755 => 100644 app/modules/users/views/member_list_config.php mode change 100755 => 100644 app/modules/users/views/profile.php mode change 100755 => 100644 app/modules/users/views/user_form.php mode change 100755 => 100644 app/modules/users/views/users.php mode change 100755 => 100644 app/third_party/MX/Base.php mode change 100755 => 100644 app/third_party/MX/Ci.php mode change 100755 => 100644 app/third_party/MX/Config.php mode change 100755 => 100644 app/third_party/MX/Controller.php mode change 100755 => 100644 app/third_party/MX/Lang.php mode change 100755 => 100644 app/third_party/MX/Loader.php mode change 100755 => 100644 app/third_party/MX/Modules.php mode change 100755 => 100644 app/third_party/MX/Router.php mode change 100755 => 100644 app/updates/3.01.php mode change 100755 => 100644 app/updates/3.02.php mode change 100755 => 100644 app/updates/3.03.php mode change 100755 => 100644 app/updates/3.35.php mode change 100755 => 100644 app/updates/3.38.php mode change 100755 => 100644 app/updates/3.39.php mode change 100755 => 100644 app/updates/3.40.php mode change 100755 => 100644 app/updates/3.69.php mode change 100755 => 100644 app/updates/install.php mode change 100755 => 100644 codeigniter_license.txt mode change 100755 => 100644 hero-os-license.txt mode change 100755 => 100644 index.php mode change 100755 => 100644 system/core/Benchmark.php mode change 100755 => 100644 system/core/CodeIgniter.php mode change 100755 => 100644 system/core/Common.php mode change 100755 => 100644 system/core/Config.php mode change 100755 => 100644 system/core/Controller.php mode change 100755 => 100644 system/core/Exceptions.php mode change 100755 => 100644 system/core/Hooks.php mode change 100755 => 100644 system/core/Input.php mode change 100755 => 100644 system/core/Lang.php mode change 100755 => 100644 system/core/Loader.php mode change 100755 => 100644 system/core/Model.php mode change 100755 => 100644 system/core/Output.php mode change 100755 => 100644 system/core/Router.php mode change 100755 => 100644 system/core/Security.php mode change 100755 => 100644 system/core/URI.php mode change 100755 => 100644 system/core/Utf8.php mode change 100755 => 100644 system/core/index.html mode change 100755 => 100644 system/database/DB.php mode change 100755 => 100644 system/database/DB_active_rec.php mode change 100755 => 100644 system/database/DB_cache.php mode change 100755 => 100644 system/database/DB_driver.php mode change 100755 => 100644 system/database/DB_forge.php mode change 100755 => 100644 system/database/DB_result.php mode change 100755 => 100644 system/database/DB_utility.php mode change 100755 => 100644 system/database/drivers/cubrid/cubrid_driver.php mode change 100755 => 100644 system/database/drivers/cubrid/cubrid_forge.php mode change 100755 => 100644 system/database/drivers/cubrid/cubrid_result.php mode change 100755 => 100644 system/database/drivers/cubrid/cubrid_utility.php mode change 100755 => 100644 system/database/drivers/cubrid/index.html mode change 100755 => 100644 system/database/drivers/index.html mode change 100755 => 100644 system/database/drivers/mssql/index.html mode change 100755 => 100644 system/database/drivers/mssql/mssql_driver.php mode change 100755 => 100644 system/database/drivers/mssql/mssql_forge.php mode change 100755 => 100644 system/database/drivers/mssql/mssql_result.php mode change 100755 => 100644 system/database/drivers/mssql/mssql_utility.php mode change 100755 => 100644 system/database/drivers/mysql/index.html mode change 100755 => 100644 system/database/drivers/mysql/mysql_driver.php mode change 100755 => 100644 system/database/drivers/mysql/mysql_forge.php mode change 100755 => 100644 system/database/drivers/mysql/mysql_result.php mode change 100755 => 100644 system/database/drivers/mysql/mysql_utility.php mode change 100755 => 100644 system/database/drivers/mysqli/index.html mode change 100755 => 100644 system/database/drivers/mysqli/mysqli_driver.php mode change 100755 => 100644 system/database/drivers/mysqli/mysqli_forge.php mode change 100755 => 100644 system/database/drivers/mysqli/mysqli_result.php mode change 100755 => 100644 system/database/drivers/mysqli/mysqli_utility.php mode change 100755 => 100644 system/database/drivers/oci8/index.html mode change 100755 => 100644 system/database/drivers/oci8/oci8_driver.php mode change 100755 => 100644 system/database/drivers/oci8/oci8_forge.php mode change 100755 => 100644 system/database/drivers/oci8/oci8_result.php mode change 100755 => 100644 system/database/drivers/oci8/oci8_utility.php mode change 100755 => 100644 system/database/drivers/odbc/index.html mode change 100755 => 100644 system/database/drivers/odbc/odbc_driver.php mode change 100755 => 100644 system/database/drivers/odbc/odbc_forge.php mode change 100755 => 100644 system/database/drivers/odbc/odbc_result.php mode change 100755 => 100644 system/database/drivers/odbc/odbc_utility.php mode change 100755 => 100644 system/database/drivers/pdo/index.html mode change 100755 => 100644 system/database/drivers/pdo/pdo_driver.php mode change 100755 => 100644 system/database/drivers/pdo/pdo_forge.php mode change 100755 => 100644 system/database/drivers/pdo/pdo_result.php mode change 100755 => 100644 system/database/drivers/pdo/pdo_utility.php mode change 100755 => 100644 system/database/drivers/postgre/index.html mode change 100755 => 100644 system/database/drivers/postgre/postgre_driver.php mode change 100755 => 100644 system/database/drivers/postgre/postgre_forge.php mode change 100755 => 100644 system/database/drivers/postgre/postgre_result.php mode change 100755 => 100644 system/database/drivers/postgre/postgre_utility.php mode change 100755 => 100644 system/database/drivers/sqlite/index.html mode change 100755 => 100644 system/database/drivers/sqlite/sqlite_driver.php mode change 100755 => 100644 system/database/drivers/sqlite/sqlite_forge.php mode change 100755 => 100644 system/database/drivers/sqlite/sqlite_result.php mode change 100755 => 100644 system/database/drivers/sqlite/sqlite_utility.php mode change 100755 => 100644 system/database/drivers/sqlsrv/index.html mode change 100755 => 100644 system/database/drivers/sqlsrv/sqlsrv_driver.php mode change 100755 => 100644 system/database/drivers/sqlsrv/sqlsrv_forge.php mode change 100755 => 100644 system/database/drivers/sqlsrv/sqlsrv_result.php mode change 100755 => 100644 system/database/drivers/sqlsrv/sqlsrv_utility.php mode change 100755 => 100644 system/database/index.html mode change 100755 => 100644 system/fonts/index.html mode change 100755 => 100644 system/fonts/texb.ttf mode change 100755 => 100644 system/helpers/array_helper.php mode change 100755 => 100644 system/helpers/captcha_helper.php mode change 100755 => 100644 system/helpers/cookie_helper.php mode change 100755 => 100644 system/helpers/date_helper.php mode change 100755 => 100644 system/helpers/directory_helper.php mode change 100755 => 100644 system/helpers/download_helper.php mode change 100755 => 100644 system/helpers/email_helper.php mode change 100755 => 100644 system/helpers/file_helper.php mode change 100755 => 100644 system/helpers/form_helper.php mode change 100755 => 100644 system/helpers/html_helper.php mode change 100755 => 100644 system/helpers/index.html mode change 100755 => 100644 system/helpers/inflector_helper.php mode change 100755 => 100644 system/helpers/language_helper.php mode change 100755 => 100644 system/helpers/number_helper.php mode change 100755 => 100644 system/helpers/path_helper.php mode change 100755 => 100644 system/helpers/security_helper.php mode change 100755 => 100644 system/helpers/smiley_helper.php mode change 100755 => 100644 system/helpers/string_helper.php mode change 100755 => 100644 system/helpers/text_helper.php mode change 100755 => 100644 system/helpers/typography_helper.php mode change 100755 => 100644 system/helpers/url_helper.php mode change 100755 => 100644 system/helpers/xml_helper.php mode change 100755 => 100644 system/index.html mode change 100755 => 100644 system/language/english/calendar_lang.php mode change 100755 => 100644 system/language/english/date_lang.php mode change 100755 => 100644 system/language/english/db_lang.php mode change 100755 => 100644 system/language/english/email_lang.php mode change 100755 => 100644 system/language/english/form_validation_lang.php mode change 100755 => 100644 system/language/english/ftp_lang.php mode change 100755 => 100644 system/language/english/imglib_lang.php mode change 100755 => 100644 system/language/english/index.html mode change 100755 => 100644 system/language/english/migration_lang.php mode change 100755 => 100644 system/language/english/number_lang.php mode change 100755 => 100644 system/language/english/profiler_lang.php mode change 100755 => 100644 system/language/english/unit_test_lang.php mode change 100755 => 100644 system/language/english/upload_lang.php mode change 100755 => 100644 system/language/index.html mode change 100755 => 100644 system/libraries/Cache/Cache.php mode change 100755 => 100644 system/libraries/Cache/drivers/Cache_apc.php mode change 100755 => 100644 system/libraries/Cache/drivers/Cache_dummy.php mode change 100755 => 100644 system/libraries/Cache/drivers/Cache_file.php mode change 100755 => 100644 system/libraries/Cache/drivers/Cache_memcached.php mode change 100755 => 100644 system/libraries/Calendar.php mode change 100755 => 100644 system/libraries/Cart.php mode change 100755 => 100644 system/libraries/Driver.php mode change 100755 => 100644 system/libraries/Email.php mode change 100755 => 100644 system/libraries/Encrypt.php mode change 100755 => 100644 system/libraries/Form_validation.php mode change 100755 => 100644 system/libraries/Ftp.php mode change 100755 => 100644 system/libraries/Image_lib.php mode change 100755 => 100644 system/libraries/Javascript.php mode change 100755 => 100644 system/libraries/Log.php mode change 100755 => 100644 system/libraries/Migration.php mode change 100755 => 100644 system/libraries/Pagination.php mode change 100755 => 100644 system/libraries/Parser.php mode change 100755 => 100644 system/libraries/Profiler.php mode change 100755 => 100644 system/libraries/Session.php mode change 100755 => 100644 system/libraries/Sha1.php mode change 100755 => 100644 system/libraries/Table.php mode change 100755 => 100644 system/libraries/Trackback.php mode change 100755 => 100644 system/libraries/Typography.php mode change 100755 => 100644 system/libraries/Unit_test.php mode change 100755 => 100644 system/libraries/Upload.php mode change 100755 => 100644 system/libraries/User_agent.php mode change 100755 => 100644 system/libraries/Xmlrpc.php mode change 100755 => 100644 system/libraries/Xmlrpcs.php mode change 100755 => 100644 system/libraries/Zip.php mode change 100755 => 100644 system/libraries/index.html mode change 100755 => 100644 system/libraries/javascript/Jquery.php diff --git a/.gitignore b/.gitignore old mode 100755 new mode 100644 diff --git a/.htaccess b/.htaccess old mode 100755 new mode 100644 diff --git a/1.htaccess b/1.htaccess old mode 100755 new mode 100644 diff --git a/README.md b/README.md old mode 100755 new mode 100644 diff --git a/app/config/autoload.php b/app/config/autoload.php old mode 100755 new mode 100644 diff --git a/app/config/config.example.php b/app/config/config.example.php old mode 100755 new mode 100644 diff --git a/app/config/constants.php b/app/config/constants.php old mode 100755 new mode 100644 diff --git a/app/config/core_modules.php b/app/config/core_modules.php old mode 100755 new mode 100644 diff --git a/app/config/database.format.php b/app/config/database.format.php old mode 100755 new mode 100644 diff --git a/app/config/default_routes.php b/app/config/default_routes.php old mode 100755 new mode 100644 diff --git a/app/config/doctypes.php b/app/config/doctypes.php old mode 100755 new mode 100644 diff --git a/app/config/email.php b/app/config/email.php old mode 100755 new mode 100644 diff --git a/app/config/foreign_chars.php b/app/config/foreign_chars.php old mode 100755 new mode 100644 diff --git a/app/config/hooks.php b/app/config/hooks.php old mode 100755 new mode 100644 diff --git a/app/config/index.html b/app/config/index.html old mode 100755 new mode 100644 diff --git a/app/config/mimes.php b/app/config/mimes.php old mode 100755 new mode 100644 diff --git a/app/config/pagination.php b/app/config/pagination.php old mode 100755 new mode 100644 diff --git a/app/config/profiler.php b/app/config/profiler.php old mode 100755 new mode 100644 diff --git a/app/config/routes.php b/app/config/routes.php old mode 100755 new mode 100644 diff --git a/app/config/smileys.php b/app/config/smileys.php old mode 100755 new mode 100644 diff --git a/app/config/user_agents.php b/app/config/user_agents.php old mode 100755 new mode 100644 diff --git a/app/config/version.php b/app/config/version.php old mode 100755 new mode 100644 diff --git a/app/controllers/admincp/dashboard.php b/app/controllers/admincp/dashboard.php old mode 100755 new mode 100644 diff --git a/app/controllers/admincp/dataset.php b/app/controllers/admincp/dataset.php old mode 100755 new mode 100644 diff --git a/app/controllers/admincp/login.php b/app/controllers/admincp/login.php old mode 100755 new mode 100644 diff --git a/app/controllers/cron.php b/app/controllers/cron.php old mode 100755 new mode 100644 diff --git a/app/controllers/error.php b/app/controllers/error.php old mode 100755 new mode 100644 diff --git a/app/controllers/frontpage.php b/app/controllers/frontpage.php old mode 100755 new mode 100644 diff --git a/app/controllers/index.html b/app/controllers/index.html old mode 100755 new mode 100644 diff --git a/app/controllers/install.php b/app/controllers/install.php old mode 100755 new mode 100644 diff --git a/app/core/MY_Controller.php b/app/core/MY_Controller.php old mode 100755 new mode 100644 diff --git a/app/core/MY_Input.php b/app/core/MY_Input.php old mode 100755 new mode 100644 diff --git a/app/core/MY_Loader.php b/app/core/MY_Loader.php old mode 100755 new mode 100644 diff --git a/app/core/MY_Router.php b/app/core/MY_Router.php old mode 100755 new mode 100644 diff --git a/app/errors/error_404.php b/app/errors/error_404.php old mode 100755 new mode 100644 diff --git a/app/errors/error_db.php b/app/errors/error_db.php old mode 100755 new mode 100644 diff --git a/app/errors/error_general.php b/app/errors/error_general.php old mode 100755 new mode 100644 diff --git a/app/errors/error_php.php b/app/errors/error_php.php old mode 100755 new mode 100644 diff --git a/app/errors/index.html b/app/errors/index.html old mode 100755 new mode 100644 diff --git a/app/helpers/MY_url_helper.php b/app/helpers/MY_url_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/admincp/admin_link_helper.php b/app/helpers/admincp/admin_link_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/admincp/dataset_link_helper.php b/app/helpers/admincp/dataset_link_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/admincp/get_notices_helper.php b/app/helpers/admincp/get_notices_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/admincp/url_string_helper.php b/app/helpers/admincp/url_string_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/array_to_json_helper.php b/app/helpers/array_to_json_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/branding/branded_include_helper.php b/app/helpers/branding/branded_include_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/branding/branded_view_helper.php b/app/helpers/branding/branded_view_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/clean_string_helper.php b/app/helpers/clean_string_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/cron_log_helper.php b/app/helpers/cron_log_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/file_extension_helper.php b/app/helpers/file_extension_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/filter_directory_helper.php b/app/helpers/filter_directory_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/format_size_helper.php b/app/helpers/format_size_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/format_street_address_helper.php b/app/helpers/format_street_address_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/get_available_image_library_helper.php b/app/helpers/get_available_image_library_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/image_thumb_helper.php b/app/helpers/image_thumb_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/index.html b/app/helpers/index.html old mode 100755 new mode 100644 diff --git a/app/helpers/install_redirect_helper.php b/app/helpers/install_redirect_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/local_time_helper.php b/app/helpers/local_time_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/module_installed_helper.php b/app/helpers/module_installed_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/money_format_helper.php b/app/helpers/money_format_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/query_value_helper.php b/app/helpers/query_value_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/setting_helper.php b/app/helpers/setting_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/shorten_helper.php b/app/helpers/shorten_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/ssl_helper.php b/app/helpers/ssl_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/states_helper.php b/app/helpers/states_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/strip_whitespace_helper.php b/app/helpers/strip_whitespace_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/template_files_helper.php b/app/helpers/template_files_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/time_since_helper.php b/app/helpers/time_since_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/unique_email_helper.php b/app/helpers/unique_email_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/unique_username_helper.php b/app/helpers/unique_username_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/valid_domain_helper.php b/app/helpers/valid_domain_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/verify_password_helper.php b/app/helpers/verify_password_helper.php old mode 100755 new mode 100644 diff --git a/app/helpers/xml_value_prep_helper.php b/app/helpers/xml_value_prep_helper.php old mode 100755 new mode 100644 diff --git a/app/hooks/index.html b/app/hooks/index.html old mode 100755 new mode 100644 diff --git a/app/index.html b/app/index.html old mode 100755 new mode 100644 diff --git a/app/language/english/control_panel_lang.php b/app/language/english/control_panel_lang.php old mode 100755 new mode 100644 diff --git a/app/language/english/index.html b/app/language/english/index.html old mode 100755 new mode 100644 diff --git a/app/libraries/MY_Cart.php b/app/libraries/MY_Cart.php old mode 100755 new mode 100644 diff --git a/app/libraries/MY_Email.php b/app/libraries/MY_Email.php old mode 100755 new mode 100644 diff --git a/app/libraries/MY_Upload.php b/app/libraries/MY_Upload.php old mode 100755 new mode 100644 diff --git a/app/libraries/admin_form.php b/app/libraries/admin_form.php old mode 100755 new mode 100644 diff --git a/app/libraries/admin_navigation.php b/app/libraries/admin_navigation.php old mode 100755 new mode 100644 diff --git a/app/libraries/app_hooks.php b/app/libraries/app_hooks.php old mode 100755 new mode 100644 diff --git a/app/libraries/array_to_csv.php b/app/libraries/array_to_csv.php old mode 100755 new mode 100644 diff --git a/app/libraries/array_to_xml.php b/app/libraries/array_to_xml.php old mode 100755 new mode 100644 diff --git a/app/libraries/asciihex.php b/app/libraries/asciihex.php old mode 100755 new mode 100644 diff --git a/app/libraries/auto_updater.php b/app/libraries/auto_updater.php old mode 100755 new mode 100644 diff --git a/app/libraries/controllers/Admincp_Controller.php b/app/libraries/controllers/Admincp_Controller.php old mode 100755 new mode 100644 diff --git a/app/libraries/controllers/Front_Controller.php b/app/libraries/controllers/Front_Controller.php old mode 100755 new mode 100644 diff --git a/app/libraries/dataset.php b/app/libraries/dataset.php old mode 100755 new mode 100644 diff --git a/app/libraries/field_validation.php b/app/libraries/field_validation.php old mode 100755 new mode 100644 diff --git a/app/libraries/head_assets.php b/app/libraries/head_assets.php old mode 100755 new mode 100644 diff --git a/app/libraries/head_compile.php b/app/libraries/head_compile.php old mode 100755 new mode 100644 diff --git a/app/libraries/image_gallery_form.php b/app/libraries/image_gallery_form.php old mode 100755 new mode 100644 diff --git a/app/libraries/index.html b/app/libraries/index.html old mode 100755 new mode 100644 diff --git a/app/libraries/inflect.php b/app/libraries/inflect.php old mode 100755 new mode 100644 diff --git a/app/libraries/jsmin.php b/app/libraries/jsmin.php old mode 100755 new mode 100644 diff --git a/app/libraries/key.php b/app/libraries/key.php old mode 100755 new mode 100644 diff --git a/app/libraries/module.php b/app/libraries/module.php old mode 100755 new mode 100644 diff --git a/app/libraries/notices.php b/app/libraries/notices.php old mode 100755 new mode 100644 diff --git a/app/libraries/response.php b/app/libraries/response.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty.php b/app/libraries/smarty.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/Smarty.class.php b/app/libraries/smarty/Smarty.class.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/block.php.php b/app/libraries/smarty/plugins/block.php.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/block.textformat.php b/app/libraries/smarty/plugins/block.textformat.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.counter.php b/app/libraries/smarty/plugins/function.counter.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.cycle.php b/app/libraries/smarty/plugins/function.cycle.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.fetch.php b/app/libraries/smarty/plugins/function.fetch.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.html_checkboxes.php b/app/libraries/smarty/plugins/function.html_checkboxes.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.html_image.php b/app/libraries/smarty/plugins/function.html_image.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.html_options.php b/app/libraries/smarty/plugins/function.html_options.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.html_radios.php b/app/libraries/smarty/plugins/function.html_radios.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.html_select_date.php b/app/libraries/smarty/plugins/function.html_select_date.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.html_select_time.php b/app/libraries/smarty/plugins/function.html_select_time.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.html_table.php b/app/libraries/smarty/plugins/function.html_table.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.mailto.php b/app/libraries/smarty/plugins/function.mailto.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.math.php b/app/libraries/smarty/plugins/function.math.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.popup.php b/app/libraries/smarty/plugins/function.popup.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/function.popup_init.php b/app/libraries/smarty/plugins/function.popup_init.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.capitalize.php b/app/libraries/smarty/plugins/modifier.capitalize.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.date_format.php b/app/libraries/smarty/plugins/modifier.date_format.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.debug_print_var.php b/app/libraries/smarty/plugins/modifier.debug_print_var.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.escape.php b/app/libraries/smarty/plugins/modifier.escape.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.regex_replace.php b/app/libraries/smarty/plugins/modifier.regex_replace.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.replace.php b/app/libraries/smarty/plugins/modifier.replace.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.spacify.php b/app/libraries/smarty/plugins/modifier.spacify.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifier.truncate.php b/app/libraries/smarty/plugins/modifier.truncate.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.cat.php b/app/libraries/smarty/plugins/modifiercompiler.cat.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_characters.php b/app/libraries/smarty/plugins/modifiercompiler.count_characters.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_paragraphs.php b/app/libraries/smarty/plugins/modifiercompiler.count_paragraphs.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_sentences.php b/app/libraries/smarty/plugins/modifiercompiler.count_sentences.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.count_words.php b/app/libraries/smarty/plugins/modifiercompiler.count_words.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.default.php b/app/libraries/smarty/plugins/modifiercompiler.default.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.indent.php b/app/libraries/smarty/plugins/modifiercompiler.indent.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.lower.php b/app/libraries/smarty/plugins/modifiercompiler.lower.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.noprint.php b/app/libraries/smarty/plugins/modifiercompiler.noprint.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.string_format.php b/app/libraries/smarty/plugins/modifiercompiler.string_format.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.strip.php b/app/libraries/smarty/plugins/modifiercompiler.strip.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.strip_tags.php b/app/libraries/smarty/plugins/modifiercompiler.strip_tags.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.upper.php b/app/libraries/smarty/plugins/modifiercompiler.upper.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/modifiercompiler.wordwrap.php b/app/libraries/smarty/plugins/modifiercompiler.wordwrap.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/outputfilter.trimwhitespace.php b/app/libraries/smarty/plugins/outputfilter.trimwhitespace.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/shared.escape_special_chars.php b/app/libraries/smarty/plugins/shared.escape_special_chars.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/shared.make_timestamp.php b/app/libraries/smarty/plugins/shared.make_timestamp.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/plugins/variablefilter.htmlspecialchars.php b/app/libraries/smarty/plugins/variablefilter.htmlspecialchars.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_cacheresource_file.php b/app/libraries/smarty/sysplugins/smarty_internal_cacheresource_file.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_append.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_append.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_assign.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_assign.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_block.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_block.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_break.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_break.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_call.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_call.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_capture.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_capture.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_config_load.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_config_load.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_continue.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_continue.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_debug.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_debug.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_eval.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_eval.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_extends.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_extends.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_for.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_for.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_foreach.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_foreach.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_function.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_if.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_if.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_include.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_include.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_include_php.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_include_php.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_insert.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_insert.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_ldelim.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_ldelim.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_nocache.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_nocache.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_modifier.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_modifier.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_object_function.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_print_expression.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_print_expression.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_block.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_block.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_function.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_registered_function.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_private_special_variable.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_private_special_variable.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_rdelim.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_rdelim.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_section.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_section.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compile_while.php b/app/libraries/smarty/sysplugins/smarty_internal_compile_while.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_compilebase.php b/app/libraries/smarty/sysplugins/smarty_internal_compilebase.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_config.php b/app/libraries/smarty/sysplugins/smarty_internal_config.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_config_file_compiler.php b/app/libraries/smarty/sysplugins/smarty_internal_config_file_compiler.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_configfilelexer.php b/app/libraries/smarty/sysplugins/smarty_internal_configfilelexer.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_configfileparser.php b/app/libraries/smarty/sysplugins/smarty_internal_configfileparser.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_data.php b/app/libraries/smarty/sysplugins/smarty_internal_data.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_debug.php b/app/libraries/smarty/sysplugins/smarty_internal_debug.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_filter.php b/app/libraries/smarty/sysplugins/smarty_internal_filter.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_filter_handler.php b/app/libraries/smarty/sysplugins/smarty_internal_filter_handler.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_function_call_handler.php b/app/libraries/smarty/sysplugins/smarty_internal_function_call_handler.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_nocache_insert.php b/app/libraries/smarty/sysplugins/smarty_internal_nocache_insert.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_parsetree.php b/app/libraries/smarty/sysplugins/smarty_internal_parsetree.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_register.php b/app/libraries/smarty/sysplugins/smarty_internal_register.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_eval.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_eval.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_extends.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_extends.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_file.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_file.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_php.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_php.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_registered.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_registered.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_stream.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_stream.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_resource_string.php b/app/libraries/smarty/sysplugins/smarty_internal_resource_string.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php b/app/libraries/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_template.php b/app/libraries/smarty/sysplugins/smarty_internal_template.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_templatecompilerbase.php b/app/libraries/smarty/sysplugins/smarty_internal_templatecompilerbase.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_templatelexer.php b/app/libraries/smarty/sysplugins/smarty_internal_templatelexer.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_templateparser.php b/app/libraries/smarty/sysplugins/smarty_internal_templateparser.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_utility.php b/app/libraries/smarty/sysplugins/smarty_internal_utility.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_wrapper.php b/app/libraries/smarty/sysplugins/smarty_internal_wrapper.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_internal_write_file.php b/app/libraries/smarty/sysplugins/smarty_internal_write_file.php old mode 100755 new mode 100644 diff --git a/app/libraries/smarty/sysplugins/smarty_security.php b/app/libraries/smarty/sysplugins/smarty_security.php old mode 100755 new mode 100644 diff --git a/app/libraries/stats.php b/app/libraries/stats.php old mode 100755 new mode 100644 diff --git a/app/models/admincp/notices.php b/app/models/admincp/notices.php old mode 100755 new mode 100644 diff --git a/app/models/custom_fields_model.php b/app/models/custom_fields_model.php old mode 100755 new mode 100644 diff --git a/app/models/index.html b/app/models/index.html old mode 100755 new mode 100644 diff --git a/app/models/install_model.php b/app/models/install_model.php old mode 100755 new mode 100644 diff --git a/app/models/link_model.php b/app/models/link_model.php old mode 100755 new mode 100644 diff --git a/app/models/states_model.php b/app/models/states_model.php old mode 100755 new mode 100644 diff --git a/app/modules/blogs/blogs.php b/app/modules/blogs/blogs.php old mode 100755 new mode 100644 diff --git a/app/modules/blogs/controllers/admincp.php b/app/modules/blogs/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/blogs/controllers/blog.php b/app/modules/blogs/controllers/blog.php old mode 100755 new mode 100644 diff --git a/app/modules/blogs/models/blog_model.php b/app/modules/blogs/models/blog_model.php old mode 100755 new mode 100644 diff --git a/app/modules/blogs/views/blog_form.php b/app/modules/blogs/views/blog_form.php old mode 100755 new mode 100644 diff --git a/app/modules/blogs/views/blogs.php b/app/modules/blogs/views/blogs.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/controllers/admincp.php b/app/modules/custom_fields/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/custom_fields.php b/app/modules/custom_fields/custom_fields.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtype.php b/app/modules/custom_fields/libraries/fieldtype.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/checkbox.php b/app/modules/custom_fields/libraries/fieldtypes/checkbox.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/date.php b/app/modules/custom_fields/libraries/fieldtypes/date.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/datetime.php b/app/modules/custom_fields/libraries/fieldtypes/datetime.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/file_upload.php b/app/modules/custom_fields/libraries/fieldtypes/file_upload.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/member_group_relationship.php b/app/modules/custom_fields/libraries/fieldtypes/member_group_relationship.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/multicheckbox.php b/app/modules/custom_fields/libraries/fieldtypes/multicheckbox.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/multiselect.php b/app/modules/custom_fields/libraries/fieldtypes/multiselect.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/radio.php b/app/modules/custom_fields/libraries/fieldtypes/radio.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/relationship.php b/app/modules/custom_fields/libraries/fieldtypes/relationship.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/select.php b/app/modules/custom_fields/libraries/fieldtypes/select.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/subscription_relationship.php b/app/modules/custom_fields/libraries/fieldtypes/subscription_relationship.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/text.php b/app/modules/custom_fields/libraries/fieldtypes/text.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/textarea.php b/app/modules/custom_fields/libraries/fieldtypes/textarea.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/topic_relationship.php b/app/modules/custom_fields/libraries/fieldtypes/topic_relationship.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/fieldtypes/wysiwyg.php b/app/modules/custom_fields/libraries/fieldtypes/wysiwyg.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/libraries/form_builder.php b/app/modules/custom_fields/libraries/form_builder.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/template_plugins/function.custom_field.php b/app/modules/custom_fields/template_plugins/function.custom_field.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/views/arrange_fields.php b/app/modules/custom_fields/views/arrange_fields.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/views/custom_fields.php b/app/modules/custom_fields/views/custom_fields.php old mode 100755 new mode 100644 diff --git a/app/modules/custom_fields/views/field_form.php b/app/modules/custom_fields/views/field_form.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/controllers/admincp.php b/app/modules/emails/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/emails.php b/app/modules/emails/emails.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/models/email_model.php b/app/modules/emails/models/email_model.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/models/email_template_model.php b/app/modules/emails/models/email_template_model.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/email_layout.thtml b/app/modules/emails/template_import/email_layout.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/member_forgot_password.thtml b/app/modules/emails/template_import/member_forgot_password.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/member_register.thtml b/app/modules/emails/template_import/member_register.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/member_validate_email.thtml b/app/modules/emails/template_import/member_validate_email.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/store_order.thtml b/app/modules/emails/template_import/store_order.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/store_order_product_downloadable.thtml b/app/modules/emails/template_import/store_order_product_downloadable.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/subscription_charge.thtml b/app/modules/emails/template_import/subscription_charge.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/template_import/subscription_expire.thtml b/app/modules/emails/template_import/subscription_expire.thtml old mode 100755 new mode 100644 diff --git a/app/modules/emails/views/email_form.php b/app/modules/emails/views/email_form.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/views/email_layout.php b/app/modules/emails/views/email_layout.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/views/emails.php b/app/modules/emails/views/emails.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/views/select_hook.php b/app/modules/emails/views/select_hook.php old mode 100755 new mode 100644 diff --git a/app/modules/emails/views/send.php b/app/modules/emails/views/send.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/controllers/admincp.php b/app/modules/forms/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/controllers/form.php b/app/modules/forms/controllers/form.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/forms.php b/app/modules/forms/forms.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/models/form_model.php b/app/modules/forms/models/form_model.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/template_plugins/block.form.php b/app/modules/forms/template_plugins/block.form.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/views/fields.php b/app/modules/forms/views/fields.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/views/form.php b/app/modules/forms/views/form.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/views/forms.php b/app/modules/forms/views/forms.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/views/response.php b/app/modules/forms/views/response.php old mode 100755 new mode 100644 diff --git a/app/modules/forms/views/responses.php b/app/modules/forms/views/responses.php old mode 100755 new mode 100644 diff --git a/app/modules/googleanalytics/controllers/admincp.php b/app/modules/googleanalytics/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/googleanalytics/googleanalytics.php b/app/modules/googleanalytics/googleanalytics.php old mode 100755 new mode 100644 diff --git a/app/modules/googleanalytics/template_plugins/outputfilter.googleanalytics.php b/app/modules/googleanalytics/template_plugins/outputfilter.googleanalytics.php old mode 100755 new mode 100644 diff --git a/app/modules/googleanalytics/views/generic.php b/app/modules/googleanalytics/views/generic.php old mode 100755 new mode 100644 diff --git a/app/modules/import/controllers/admincp.php b/app/modules/import/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/import/import.php b/app/modules/import/import.php old mode 100755 new mode 100644 diff --git a/app/modules/import/views/fields.php b/app/modules/import/views/fields.php old mode 100755 new mode 100644 diff --git a/app/modules/import/views/index.php b/app/modules/import/views/index.php old mode 100755 new mode 100644 diff --git a/app/modules/import/views/results.php b/app/modules/import/views/results.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/controllers/admincp.php b/app/modules/menu_manager/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/menu_manager.php b/app/modules/menu_manager/menu_manager.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/models/menu_model.php b/app/modules/menu_manager/models/menu_model.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/template_plugins/function.menu.php b/app/modules/menu_manager/template_plugins/function.menu.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/views/links.php b/app/modules/menu_manager/views/links.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/views/menu_form.php b/app/modules/menu_manager/views/menu_form.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/views/menu_manager.php b/app/modules/menu_manager/views/menu_manager.php old mode 100755 new mode 100644 diff --git a/app/modules/menu_manager/views/possible_links.php b/app/modules/menu_manager/views/possible_links.php old mode 100755 new mode 100644 diff --git a/app/modules/modules/models/module_model.php b/app/modules/modules/models/module_model.php old mode 100755 new mode 100644 diff --git a/app/modules/paywall/controllers/admincp.php b/app/modules/paywall/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/paywall/controllers/protected_link.php b/app/modules/paywall/controllers/protected_link.php old mode 100755 new mode 100644 diff --git a/app/modules/paywall/helpers/paywall_helper.php b/app/modules/paywall/helpers/paywall_helper.php old mode 100755 new mode 100644 diff --git a/app/modules/paywall/paywall.php b/app/modules/paywall/paywall.php old mode 100755 new mode 100644 diff --git a/app/modules/paywall/template_plugins/function.protected_link.php b/app/modules/paywall/template_plugins/function.protected_link.php old mode 100755 new mode 100644 diff --git a/app/modules/paywall/views/paywall_configuration.php b/app/modules/paywall/views/paywall_configuration.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/controllers/admincp.php b/app/modules/publish/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/controllers/content.php b/app/modules/publish/controllers/content.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/models/content_model.php b/app/modules/publish/models/content_model.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/models/content_type_model.php b/app/modules/publish/models/content_type_model.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/models/topic_model.php b/app/modules/publish/models/topic_model.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/publish.php b/app/modules/publish/publish.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/template_plugins/block.content.php b/app/modules/publish/template_plugins/block.content.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/template_plugins/block.content_in_topic.php b/app/modules/publish/template_plugins/block.content_in_topic.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/template_plugins/block.topics.php b/app/modules/publish/template_plugins/block.topics.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/content.php b/app/modules/publish/views/content.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/content_non_standard.php b/app/modules/publish/views/content_non_standard.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/content_standard.php b/app/modules/publish/views/content_standard.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/content_types.php b/app/modules/publish/views/content_types.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/create_post.php b/app/modules/publish/views/create_post.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/create_type.php b/app/modules/publish/views/create_type.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/topic_form.php b/app/modules/publish/views/topic_form.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/topics.php b/app/modules/publish/views/topics.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/type_fields.php b/app/modules/publish/views/type_fields.php old mode 100755 new mode 100644 diff --git a/app/modules/publish/views/type_form.php b/app/modules/publish/views/type_form.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/controllers/admincp.php b/app/modules/reports/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/reports.php b/app/modules/reports/reports.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/cancellations.php b/app/modules/reports/views/cancellations.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/coupons.php b/app/modules/reports/views/coupons.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/cronjob.php b/app/modules/reports/views/cronjob.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/expirations.php b/app/modules/reports/views/expirations.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/invoice.php b/app/modules/reports/views/invoice.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/invoices.php b/app/modules/reports/views/invoices.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/mark_refund.php b/app/modules/reports/views/mark_refund.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/popular.php b/app/modules/reports/views/popular.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/products.php b/app/modules/reports/views/products.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/registrations.php b/app/modules/reports/views/registrations.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/subscriptions.php b/app/modules/reports/views/subscriptions.php old mode 100755 new mode 100644 diff --git a/app/modules/reports/views/taxes.php b/app/modules/reports/views/taxes.php old mode 100755 new mode 100644 diff --git a/app/modules/rss/controllers/admincp.php b/app/modules/rss/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/rss/controllers/feed.php b/app/modules/rss/controllers/feed.php old mode 100755 new mode 100644 diff --git a/app/modules/rss/models/rss_model.php b/app/modules/rss/models/rss_model.php old mode 100755 new mode 100644 diff --git a/app/modules/rss/rss.php b/app/modules/rss/rss.php old mode 100755 new mode 100644 diff --git a/app/modules/rss/views/feed_form.php b/app/modules/rss/views/feed_form.php old mode 100755 new mode 100644 diff --git a/app/modules/rss/views/rss_feeds.php b/app/modules/rss/views/rss_feeds.php old mode 100755 new mode 100644 diff --git a/app/modules/search/controllers/admincp.php b/app/modules/search/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/search/controllers/search.php b/app/modules/search/controllers/search.php old mode 100755 new mode 100644 diff --git a/app/modules/search/libraries/search_results.php b/app/modules/search/libraries/search_results.php old mode 100755 new mode 100644 diff --git a/app/modules/search/search.php b/app/modules/search/search.php old mode 100755 new mode 100644 diff --git a/app/modules/search/views/search_configuration.php b/app/modules/search/views/search_configuration.php old mode 100755 new mode 100644 diff --git a/app/modules/settings/controllers/admincp.php b/app/modules/settings/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/settings/models/settings_model.php b/app/modules/settings/models/settings_model.php old mode 100755 new mode 100644 diff --git a/app/modules/settings/settings.php b/app/modules/settings/settings.php old mode 100755 new mode 100644 diff --git a/app/modules/settings/views/module_uninstall_confirm.php b/app/modules/settings/views/module_uninstall_confirm.php old mode 100755 new mode 100644 diff --git a/app/modules/settings/views/modules.php b/app/modules/settings/views/modules.php old mode 100755 new mode 100644 diff --git a/app/modules/settings/views/settings.php b/app/modules/settings/views/settings.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/controllers/admincp.php b/app/modules/theme/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/controllers/template.php b/app/modules/theme/controllers/template.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/models/theme_model.php b/app/modules/theme/models/theme_model.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/theme.php b/app/modules/theme/theme.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/views/editor.php b/app/modules/theme/views/editor.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/views/install_complete.php b/app/modules/theme/views/install_complete.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/views/install_confirm.php b/app/modules/theme/views/install_confirm.php old mode 100755 new mode 100644 diff --git a/app/modules/theme/views/themes.php b/app/modules/theme/views/themes.php old mode 100755 new mode 100644 diff --git a/app/modules/users/controllers/admincp.php b/app/modules/users/controllers/admincp.php old mode 100755 new mode 100644 diff --git a/app/modules/users/controllers/user_activity.php b/app/modules/users/controllers/user_activity.php old mode 100755 new mode 100644 diff --git a/app/modules/users/controllers/users.php b/app/modules/users/controllers/users.php old mode 100755 new mode 100644 diff --git a/app/modules/users/models/login_model.php b/app/modules/users/models/login_model.php old mode 100755 new mode 100644 diff --git a/app/modules/users/models/user_model.php b/app/modules/users/models/user_model.php old mode 100755 new mode 100644 diff --git a/app/modules/users/models/usergroup_model.php b/app/modules/users/models/usergroup_model.php old mode 100755 new mode 100644 diff --git a/app/modules/users/template_plugins/block.in_group.php b/app/modules/users/template_plugins/block.in_group.php old mode 100755 new mode 100644 diff --git a/app/modules/users/template_plugins/block.login_form.php b/app/modules/users/template_plugins/block.login_form.php old mode 100755 new mode 100644 diff --git a/app/modules/users/template_plugins/block.members.php b/app/modules/users/template_plugins/block.members.php old mode 100755 new mode 100644 diff --git a/app/modules/users/template_plugins/block.not_in_group.php b/app/modules/users/template_plugins/block.not_in_group.php old mode 100755 new mode 100644 diff --git a/app/modules/users/template_plugins/block.registration_form.php b/app/modules/users/template_plugins/block.registration_form.php old mode 100755 new mode 100644 diff --git a/app/modules/users/template_plugins/outputfilter.user_activity.php b/app/modules/users/template_plugins/outputfilter.user_activity.php old mode 100755 new mode 100644 diff --git a/app/modules/users/users.php b/app/modules/users/users.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/data.php b/app/modules/users/views/data.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/group_form.php b/app/modules/users/views/group_form.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/groups.php b/app/modules/users/views/groups.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/logins.php b/app/modules/users/views/logins.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/member_list_config.php b/app/modules/users/views/member_list_config.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/profile.php b/app/modules/users/views/profile.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/user_form.php b/app/modules/users/views/user_form.php old mode 100755 new mode 100644 diff --git a/app/modules/users/views/users.php b/app/modules/users/views/users.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Base.php b/app/third_party/MX/Base.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Ci.php b/app/third_party/MX/Ci.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Config.php b/app/third_party/MX/Config.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Controller.php b/app/third_party/MX/Controller.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Lang.php b/app/third_party/MX/Lang.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Loader.php b/app/third_party/MX/Loader.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Modules.php b/app/third_party/MX/Modules.php old mode 100755 new mode 100644 diff --git a/app/third_party/MX/Router.php b/app/third_party/MX/Router.php old mode 100755 new mode 100644 diff --git a/app/updates/3.01.php b/app/updates/3.01.php old mode 100755 new mode 100644 diff --git a/app/updates/3.02.php b/app/updates/3.02.php old mode 100755 new mode 100644 diff --git a/app/updates/3.03.php b/app/updates/3.03.php old mode 100755 new mode 100644 diff --git a/app/updates/3.35.php b/app/updates/3.35.php old mode 100755 new mode 100644 diff --git a/app/updates/3.38.php b/app/updates/3.38.php old mode 100755 new mode 100644 diff --git a/app/updates/3.39.php b/app/updates/3.39.php old mode 100755 new mode 100644 diff --git a/app/updates/3.40.php b/app/updates/3.40.php old mode 100755 new mode 100644 diff --git a/app/updates/3.69.php b/app/updates/3.69.php old mode 100755 new mode 100644 diff --git a/app/updates/install.php b/app/updates/install.php old mode 100755 new mode 100644 diff --git a/codeigniter_license.txt b/codeigniter_license.txt old mode 100755 new mode 100644 diff --git a/hero-os-license.txt b/hero-os-license.txt old mode 100755 new mode 100644 diff --git a/index.php b/index.php old mode 100755 new mode 100644 diff --git a/system/core/Benchmark.php b/system/core/Benchmark.php old mode 100755 new mode 100644 diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php old mode 100755 new mode 100644 diff --git a/system/core/Common.php b/system/core/Common.php old mode 100755 new mode 100644 diff --git a/system/core/Config.php b/system/core/Config.php old mode 100755 new mode 100644 diff --git a/system/core/Controller.php b/system/core/Controller.php old mode 100755 new mode 100644 diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php old mode 100755 new mode 100644 diff --git a/system/core/Hooks.php b/system/core/Hooks.php old mode 100755 new mode 100644 diff --git a/system/core/Input.php b/system/core/Input.php old mode 100755 new mode 100644 diff --git a/system/core/Lang.php b/system/core/Lang.php old mode 100755 new mode 100644 diff --git a/system/core/Loader.php b/system/core/Loader.php old mode 100755 new mode 100644 diff --git a/system/core/Model.php b/system/core/Model.php old mode 100755 new mode 100644 diff --git a/system/core/Output.php b/system/core/Output.php old mode 100755 new mode 100644 diff --git a/system/core/Router.php b/system/core/Router.php old mode 100755 new mode 100644 diff --git a/system/core/Security.php b/system/core/Security.php old mode 100755 new mode 100644 diff --git a/system/core/URI.php b/system/core/URI.php old mode 100755 new mode 100644 diff --git a/system/core/Utf8.php b/system/core/Utf8.php old mode 100755 new mode 100644 diff --git a/system/core/index.html b/system/core/index.html old mode 100755 new mode 100644 diff --git a/system/database/DB.php b/system/database/DB.php old mode 100755 new mode 100644 diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php old mode 100755 new mode 100644 diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php old mode 100755 new mode 100644 diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php old mode 100755 new mode 100644 diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php old mode 100755 new mode 100644 diff --git a/system/database/DB_result.php b/system/database/DB_result.php old mode 100755 new mode 100644 diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/cubrid/cubrid_driver.php b/system/database/drivers/cubrid/cubrid_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/cubrid/cubrid_forge.php b/system/database/drivers/cubrid/cubrid_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/cubrid/cubrid_result.php b/system/database/drivers/cubrid/cubrid_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/cubrid/cubrid_utility.php b/system/database/drivers/cubrid/cubrid_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/cubrid/index.html b/system/database/drivers/cubrid/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/index.html b/system/database/drivers/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/mssql/index.html b/system/database/drivers/mssql/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/mssql/mssql_driver.php b/system/database/drivers/mssql/mssql_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mssql/mssql_forge.php b/system/database/drivers/mssql/mssql_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mssql/mssql_result.php b/system/database/drivers/mssql/mssql_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mssql/mssql_utility.php b/system/database/drivers/mssql/mssql_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysql/index.html b/system/database/drivers/mysql/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysql/mysql_forge.php b/system/database/drivers/mysql/mysql_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysql/mysql_result.php b/system/database/drivers/mysql/mysql_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysql/mysql_utility.php b/system/database/drivers/mysql/mysql_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysqli/index.html b/system/database/drivers/mysqli/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysqli/mysqli_forge.php b/system/database/drivers/mysqli/mysqli_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysqli/mysqli_result.php b/system/database/drivers/mysqli/mysqli_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/mysqli/mysqli_utility.php b/system/database/drivers/mysqli/mysqli_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/oci8/index.html b/system/database/drivers/oci8/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/oci8/oci8_forge.php b/system/database/drivers/oci8/oci8_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/oci8/oci8_result.php b/system/database/drivers/oci8/oci8_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/oci8/oci8_utility.php b/system/database/drivers/oci8/oci8_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/odbc/index.html b/system/database/drivers/odbc/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/odbc/odbc_forge.php b/system/database/drivers/odbc/odbc_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/odbc/odbc_result.php b/system/database/drivers/odbc/odbc_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/odbc/odbc_utility.php b/system/database/drivers/odbc/odbc_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/pdo/index.html b/system/database/drivers/pdo/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/pdo/pdo_forge.php b/system/database/drivers/pdo/pdo_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/pdo/pdo_result.php b/system/database/drivers/pdo/pdo_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/pdo/pdo_utility.php b/system/database/drivers/pdo/pdo_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/postgre/index.html b/system/database/drivers/postgre/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/postgre/postgre_forge.php b/system/database/drivers/postgre/postgre_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/postgre/postgre_result.php b/system/database/drivers/postgre/postgre_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/postgre/postgre_utility.php b/system/database/drivers/postgre/postgre_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlite/index.html b/system/database/drivers/sqlite/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlite/sqlite_driver.php b/system/database/drivers/sqlite/sqlite_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlite/sqlite_forge.php b/system/database/drivers/sqlite/sqlite_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlite/sqlite_result.php b/system/database/drivers/sqlite/sqlite_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlite/sqlite_utility.php b/system/database/drivers/sqlite/sqlite_utility.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlsrv/index.html b/system/database/drivers/sqlsrv/index.html old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlsrv/sqlsrv_driver.php b/system/database/drivers/sqlsrv/sqlsrv_driver.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlsrv/sqlsrv_forge.php b/system/database/drivers/sqlsrv/sqlsrv_forge.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlsrv/sqlsrv_result.php b/system/database/drivers/sqlsrv/sqlsrv_result.php old mode 100755 new mode 100644 diff --git a/system/database/drivers/sqlsrv/sqlsrv_utility.php b/system/database/drivers/sqlsrv/sqlsrv_utility.php old mode 100755 new mode 100644 diff --git a/system/database/index.html b/system/database/index.html old mode 100755 new mode 100644 diff --git a/system/fonts/index.html b/system/fonts/index.html old mode 100755 new mode 100644 diff --git a/system/fonts/texb.ttf b/system/fonts/texb.ttf old mode 100755 new mode 100644 diff --git a/system/helpers/array_helper.php b/system/helpers/array_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/captcha_helper.php b/system/helpers/captcha_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/cookie_helper.php b/system/helpers/cookie_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/date_helper.php b/system/helpers/date_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/directory_helper.php b/system/helpers/directory_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/download_helper.php b/system/helpers/download_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/email_helper.php b/system/helpers/email_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/index.html b/system/helpers/index.html old mode 100755 new mode 100644 diff --git a/system/helpers/inflector_helper.php b/system/helpers/inflector_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/language_helper.php b/system/helpers/language_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/number_helper.php b/system/helpers/number_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/path_helper.php b/system/helpers/path_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/security_helper.php b/system/helpers/security_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/smiley_helper.php b/system/helpers/smiley_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/string_helper.php b/system/helpers/string_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/text_helper.php b/system/helpers/text_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/typography_helper.php b/system/helpers/typography_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php old mode 100755 new mode 100644 diff --git a/system/helpers/xml_helper.php b/system/helpers/xml_helper.php old mode 100755 new mode 100644 diff --git a/system/index.html b/system/index.html old mode 100755 new mode 100644 diff --git a/system/language/english/calendar_lang.php b/system/language/english/calendar_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/date_lang.php b/system/language/english/date_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/db_lang.php b/system/language/english/db_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/email_lang.php b/system/language/english/email_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/form_validation_lang.php b/system/language/english/form_validation_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/ftp_lang.php b/system/language/english/ftp_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/imglib_lang.php b/system/language/english/imglib_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/index.html b/system/language/english/index.html old mode 100755 new mode 100644 diff --git a/system/language/english/migration_lang.php b/system/language/english/migration_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/number_lang.php b/system/language/english/number_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/profiler_lang.php b/system/language/english/profiler_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/unit_test_lang.php b/system/language/english/unit_test_lang.php old mode 100755 new mode 100644 diff --git a/system/language/english/upload_lang.php b/system/language/english/upload_lang.php old mode 100755 new mode 100644 diff --git a/system/language/index.html b/system/language/index.html old mode 100755 new mode 100644 diff --git a/system/libraries/Cache/Cache.php b/system/libraries/Cache/Cache.php old mode 100755 new mode 100644 diff --git a/system/libraries/Cache/drivers/Cache_apc.php b/system/libraries/Cache/drivers/Cache_apc.php old mode 100755 new mode 100644 diff --git a/system/libraries/Cache/drivers/Cache_dummy.php b/system/libraries/Cache/drivers/Cache_dummy.php old mode 100755 new mode 100644 diff --git a/system/libraries/Cache/drivers/Cache_file.php b/system/libraries/Cache/drivers/Cache_file.php old mode 100755 new mode 100644 diff --git a/system/libraries/Cache/drivers/Cache_memcached.php b/system/libraries/Cache/drivers/Cache_memcached.php old mode 100755 new mode 100644 diff --git a/system/libraries/Calendar.php b/system/libraries/Calendar.php old mode 100755 new mode 100644 diff --git a/system/libraries/Cart.php b/system/libraries/Cart.php old mode 100755 new mode 100644 diff --git a/system/libraries/Driver.php b/system/libraries/Driver.php old mode 100755 new mode 100644 diff --git a/system/libraries/Email.php b/system/libraries/Email.php old mode 100755 new mode 100644 diff --git a/system/libraries/Encrypt.php b/system/libraries/Encrypt.php old mode 100755 new mode 100644 diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php old mode 100755 new mode 100644 diff --git a/system/libraries/Ftp.php b/system/libraries/Ftp.php old mode 100755 new mode 100644 diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php old mode 100755 new mode 100644 diff --git a/system/libraries/Javascript.php b/system/libraries/Javascript.php old mode 100755 new mode 100644 diff --git a/system/libraries/Log.php b/system/libraries/Log.php old mode 100755 new mode 100644 diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php old mode 100755 new mode 100644 diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php old mode 100755 new mode 100644 diff --git a/system/libraries/Parser.php b/system/libraries/Parser.php old mode 100755 new mode 100644 diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php old mode 100755 new mode 100644 diff --git a/system/libraries/Session.php b/system/libraries/Session.php old mode 100755 new mode 100644 diff --git a/system/libraries/Sha1.php b/system/libraries/Sha1.php old mode 100755 new mode 100644 diff --git a/system/libraries/Table.php b/system/libraries/Table.php old mode 100755 new mode 100644 diff --git a/system/libraries/Trackback.php b/system/libraries/Trackback.php old mode 100755 new mode 100644 diff --git a/system/libraries/Typography.php b/system/libraries/Typography.php old mode 100755 new mode 100644 diff --git a/system/libraries/Unit_test.php b/system/libraries/Unit_test.php old mode 100755 new mode 100644 diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php old mode 100755 new mode 100644 diff --git a/system/libraries/User_agent.php b/system/libraries/User_agent.php old mode 100755 new mode 100644 diff --git a/system/libraries/Xmlrpc.php b/system/libraries/Xmlrpc.php old mode 100755 new mode 100644 diff --git a/system/libraries/Xmlrpcs.php b/system/libraries/Xmlrpcs.php old mode 100755 new mode 100644 diff --git a/system/libraries/Zip.php b/system/libraries/Zip.php old mode 100755 new mode 100644 diff --git a/system/libraries/index.html b/system/libraries/index.html old mode 100755 new mode 100644 diff --git a/system/libraries/javascript/Jquery.php b/system/libraries/javascript/Jquery.php old mode 100755 new mode 100644 From 51332ba7f510151c255b299c7ca7ad6d8a69512c Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 21 Mar 2019 22:28:37 -0400 Subject: [PATCH 4/4] fixing permissions --- .../js/ckeditor.old/_source/adapters/jquery.js | 0 .../js/ckeditor.old/_source/core/_bootstrap.js | 0 .../js/ckeditor.old/_source/core/ckeditor.js | 0 .../js/ckeditor.old/_source/core/ckeditor_base.js | 0 .../js/ckeditor.old/_source/core/ckeditor_basic.js | 0 .../default/js/ckeditor.old/_source/core/command.js | 0 .../ckeditor.old/_source/core/commanddefinition.js | 0 .../default/js/ckeditor.old/_source/core/config.js | 0 .../js/ckeditor.old/_source/core/dataprocessor.js | 0 .../default/js/ckeditor.old/_source/core/dom.js | 0 .../js/ckeditor.old/_source/core/dom/comment.js | 0 .../js/ckeditor.old/_source/core/dom/document.js | 0 .../_source/core/dom/documentfragment.js | 0 .../js/ckeditor.old/_source/core/dom/domobject.js | 0 .../js/ckeditor.old/_source/core/dom/element.js | 0 .../js/ckeditor.old/_source/core/dom/elementpath.js | 0 .../js/ckeditor.old/_source/core/dom/event.js | 0 .../js/ckeditor.old/_source/core/dom/node.js | 0 .../js/ckeditor.old/_source/core/dom/nodelist.js | 0 .../js/ckeditor.old/_source/core/dom/range.js | 0 .../js/ckeditor.old/_source/core/dom/rangelist.js | 0 .../js/ckeditor.old/_source/core/dom/text.js | 0 .../js/ckeditor.old/_source/core/dom/walker.js | 0 .../js/ckeditor.old/_source/core/dom/window.js | 0 .../default/js/ckeditor.old/_source/core/dtd.js | 0 .../default/js/ckeditor.old/_source/core/editor.js | 0 .../js/ckeditor.old/_source/core/editor_basic.js | 0 .../default/js/ckeditor.old/_source/core/env.js | 0 .../default/js/ckeditor.old/_source/core/event.js | 0 .../js/ckeditor.old/_source/core/eventInfo.js | 0 .../js/ckeditor.old/_source/core/focusmanager.js | 0 .../js/ckeditor.old/_source/core/htmlparser.js | 0 .../_source/core/htmlparser/basicwriter.js | 0 .../ckeditor.old/_source/core/htmlparser/cdata.js | 0 .../ckeditor.old/_source/core/htmlparser/comment.js | 0 .../ckeditor.old/_source/core/htmlparser/element.js | 0 .../ckeditor.old/_source/core/htmlparser/filter.js | 0 .../_source/core/htmlparser/fragment.js | 0 .../js/ckeditor.old/_source/core/htmlparser/text.js | 0 .../default/js/ckeditor.old/_source/core/lang.js | 0 .../default/js/ckeditor.old/_source/core/loader.js | 0 .../ckeditor.old/_source/core/plugindefinition.js | 0 .../default/js/ckeditor.old/_source/core/plugins.js | 0 .../js/ckeditor.old/_source/core/resourcemanager.js | 0 .../js/ckeditor.old/_source/core/scriptloader.js | 0 .../default/js/ckeditor.old/_source/core/skins.js | 0 .../default/js/ckeditor.old/_source/core/themes.js | 0 .../default/js/ckeditor.old/_source/core/tools.js | 0 branding/default/js/ckeditor.old/_source/core/ui.js | 0 .../js/ckeditor.old/_source/lang/_languages.js | 0 .../_source/lang/_translationstatus.txt | 0 branding/default/js/ckeditor.old/_source/lang/af.js | 0 branding/default/js/ckeditor.old/_source/lang/ar.js | 0 branding/default/js/ckeditor.old/_source/lang/bg.js | 0 branding/default/js/ckeditor.old/_source/lang/bn.js | 0 branding/default/js/ckeditor.old/_source/lang/bs.js | 0 branding/default/js/ckeditor.old/_source/lang/ca.js | 0 branding/default/js/ckeditor.old/_source/lang/cs.js | 0 branding/default/js/ckeditor.old/_source/lang/cy.js | 0 branding/default/js/ckeditor.old/_source/lang/da.js | 0 branding/default/js/ckeditor.old/_source/lang/de.js | 0 branding/default/js/ckeditor.old/_source/lang/el.js | 0 .../default/js/ckeditor.old/_source/lang/en-au.js | 0 .../default/js/ckeditor.old/_source/lang/en-ca.js | 0 .../default/js/ckeditor.old/_source/lang/en-gb.js | 0 branding/default/js/ckeditor.old/_source/lang/en.js | 0 branding/default/js/ckeditor.old/_source/lang/eo.js | 0 branding/default/js/ckeditor.old/_source/lang/es.js | 0 branding/default/js/ckeditor.old/_source/lang/et.js | 0 branding/default/js/ckeditor.old/_source/lang/eu.js | 0 branding/default/js/ckeditor.old/_source/lang/fa.js | 0 branding/default/js/ckeditor.old/_source/lang/fi.js | 0 branding/default/js/ckeditor.old/_source/lang/fo.js | 0 .../default/js/ckeditor.old/_source/lang/fr-ca.js | 0 branding/default/js/ckeditor.old/_source/lang/fr.js | 0 branding/default/js/ckeditor.old/_source/lang/gl.js | 0 branding/default/js/ckeditor.old/_source/lang/gu.js | 0 branding/default/js/ckeditor.old/_source/lang/he.js | 0 branding/default/js/ckeditor.old/_source/lang/hi.js | 0 branding/default/js/ckeditor.old/_source/lang/hr.js | 0 branding/default/js/ckeditor.old/_source/lang/hu.js | 0 branding/default/js/ckeditor.old/_source/lang/is.js | 0 branding/default/js/ckeditor.old/_source/lang/it.js | 0 branding/default/js/ckeditor.old/_source/lang/ja.js | 0 branding/default/js/ckeditor.old/_source/lang/ka.js | 0 branding/default/js/ckeditor.old/_source/lang/km.js | 0 branding/default/js/ckeditor.old/_source/lang/ko.js | 0 branding/default/js/ckeditor.old/_source/lang/lt.js | 0 branding/default/js/ckeditor.old/_source/lang/lv.js | 0 branding/default/js/ckeditor.old/_source/lang/mn.js | 0 branding/default/js/ckeditor.old/_source/lang/ms.js | 0 branding/default/js/ckeditor.old/_source/lang/nb.js | 0 branding/default/js/ckeditor.old/_source/lang/nl.js | 0 branding/default/js/ckeditor.old/_source/lang/no.js | 0 branding/default/js/ckeditor.old/_source/lang/pl.js | 0 .../default/js/ckeditor.old/_source/lang/pt-br.js | 0 branding/default/js/ckeditor.old/_source/lang/pt.js | 0 branding/default/js/ckeditor.old/_source/lang/ro.js | 0 branding/default/js/ckeditor.old/_source/lang/ru.js | 0 branding/default/js/ckeditor.old/_source/lang/sk.js | 0 branding/default/js/ckeditor.old/_source/lang/sl.js | 0 .../default/js/ckeditor.old/_source/lang/sr-latn.js | 0 branding/default/js/ckeditor.old/_source/lang/sr.js | 0 branding/default/js/ckeditor.old/_source/lang/sv.js | 0 branding/default/js/ckeditor.old/_source/lang/th.js | 0 branding/default/js/ckeditor.old/_source/lang/tr.js | 0 branding/default/js/ckeditor.old/_source/lang/uk.js | 0 branding/default/js/ckeditor.old/_source/lang/vi.js | 0 .../default/js/ckeditor.old/_source/lang/zh-cn.js | 0 branding/default/js/ckeditor.old/_source/lang/zh.js | 0 .../_source/plugins/a11yhelp/dialogs/a11yhelp.js | 0 .../_source/plugins/a11yhelp/lang/en.js | 0 .../_source/plugins/a11yhelp/lang/he.js | 0 .../ckeditor.old/_source/plugins/a11yhelp/plugin.js | 0 .../_source/plugins/about/dialogs/about.js | 0 .../_source/plugins/about/dialogs/logo_ckeditor.png | Bin .../js/ckeditor.old/_source/plugins/about/plugin.js | 0 .../ckeditor.old/_source/plugins/adobeair/plugin.js | 0 .../js/ckeditor.old/_source/plugins/ajax/plugin.js | 0 .../ckeditor.old/_source/plugins/autogrow/plugin.js | 0 .../_source/plugins/basicstyles/plugin.js | 0 .../ckeditor.old/_source/plugins/bbcode/plugin.js | 0 .../js/ckeditor.old/_source/plugins/bidi/plugin.js | 0 .../_source/plugins/blockquote/plugin.js | 0 .../ckeditor.old/_source/plugins/button/plugin.js | 0 .../_source/plugins/clipboard/dialogs/paste.js | 0 .../_source/plugins/clipboard/plugin.js | 0 .../_source/plugins/colorbutton/plugin.js | 0 .../plugins/colordialog/dialogs/colordialog.js | 0 .../_source/plugins/colordialog/plugin.js | 0 .../_source/plugins/contextmenu/plugin.js | 0 .../_source/plugins/devtools/lang/en.js | 0 .../ckeditor.old/_source/plugins/devtools/plugin.js | 0 .../_source/plugins/dialog/dialogDefinition.js | 0 .../ckeditor.old/_source/plugins/dialog/plugin.js | 0 .../_source/plugins/dialogadvtab/plugin.js | 0 .../ckeditor.old/_source/plugins/dialogui/plugin.js | 0 .../ckeditor.old/_source/plugins/div/dialogs/div.js | 0 .../js/ckeditor.old/_source/plugins/div/plugin.js | 0 .../_source/plugins/docprops/dialogs/docprops.js | 0 .../ckeditor.old/_source/plugins/docprops/plugin.js | 0 .../_source/plugins/domiterator/plugin.js | 0 .../_source/plugins/editingblock/plugin.js | 0 .../_source/plugins/elementspath/plugin.js | 0 .../ckeditor.old/_source/plugins/enterkey/plugin.js | 0 .../ckeditor.old/_source/plugins/entities/plugin.js | 0 .../_source/plugins/fakeobjects/plugin.js | 0 .../_source/plugins/filebrowser/plugin.js | 0 .../_source/plugins/find/dialogs/find.js | 0 .../js/ckeditor.old/_source/plugins/find/plugin.js | 0 .../_source/plugins/flash/dialogs/flash.js | 0 .../_source/plugins/flash/images/placeholder.png | Bin .../js/ckeditor.old/_source/plugins/flash/plugin.js | 0 .../_source/plugins/floatpanel/plugin.js | 0 .../js/ckeditor.old/_source/plugins/font/plugin.js | 0 .../ckeditor.old/_source/plugins/format/plugin.js | 0 .../_source/plugins/forms/dialogs/button.js | 0 .../_source/plugins/forms/dialogs/checkbox.js | 0 .../_source/plugins/forms/dialogs/form.js | 0 .../_source/plugins/forms/dialogs/hiddenfield.js | 0 .../_source/plugins/forms/dialogs/radio.js | 0 .../_source/plugins/forms/dialogs/select.js | 0 .../_source/plugins/forms/dialogs/textarea.js | 0 .../_source/plugins/forms/dialogs/textfield.js | 0 .../_source/plugins/forms/images/hiddenfield.gif | Bin .../js/ckeditor.old/_source/plugins/forms/plugin.js | 0 .../_source/plugins/horizontalrule/plugin.js | 0 .../_source/plugins/htmldataprocessor/plugin.js | 0 .../_source/plugins/htmlwriter/plugin.js | 0 .../_source/plugins/iframe/dialogs/iframe.js | 0 .../_source/plugins/iframe/images/placeholder.png | Bin .../ckeditor.old/_source/plugins/iframe/plugin.js | 0 .../_source/plugins/iframedialog/plugin.js | 0 .../_source/plugins/image/dialogs/image.js | 0 .../js/ckeditor.old/_source/plugins/image/plugin.js | 0 .../ckeditor.old/_source/plugins/indent/plugin.js | 0 .../ckeditor.old/_source/plugins/justify/plugin.js | 0 .../_source/plugins/keystrokes/plugin.js | 0 .../_source/plugins/link/dialogs/anchor.js | 0 .../_source/plugins/link/dialogs/link.js | 0 .../_source/plugins/link/images/anchor.gif | Bin .../js/ckeditor.old/_source/plugins/link/plugin.js | 0 .../js/ckeditor.old/_source/plugins/list/plugin.js | 0 .../_source/plugins/listblock/plugin.js | 0 .../_source/plugins/liststyle/dialogs/liststyle.js | 0 .../_source/plugins/liststyle/plugin.js | 0 .../ckeditor.old/_source/plugins/maximize/plugin.js | 0 .../js/ckeditor.old/_source/plugins/menu/plugin.js | 0 .../_source/plugins/menubutton/plugin.js | 0 .../ckeditor.old/_source/plugins/newpage/plugin.js | 0 .../_source/plugins/pagebreak/images/pagebreak.gif | Bin .../_source/plugins/pagebreak/plugin.js | 0 .../js/ckeditor.old/_source/plugins/panel/plugin.js | 0 .../_source/plugins/panelbutton/plugin.js | 0 .../_source/plugins/pastefromword/filter/default.js | 0 .../_source/plugins/pastefromword/plugin.js | 0 .../_source/plugins/pastetext/dialogs/pastetext.js | 0 .../_source/plugins/pastetext/plugin.js | 0 .../plugins/placeholder/dialogs/placeholder.js | 0 .../_source/plugins/placeholder/lang/en.js | 0 .../_source/plugins/placeholder/lang/he.js | 0 .../_source/plugins/placeholder/placeholder.gif | Bin .../_source/plugins/placeholder/plugin.js | 0 .../js/ckeditor.old/_source/plugins/popup/plugin.js | 0 .../ckeditor.old/_source/plugins/preview/plugin.js | 0 .../js/ckeditor.old/_source/plugins/print/plugin.js | 0 .../_source/plugins/removeformat/plugin.js | 0 .../ckeditor.old/_source/plugins/resize/plugin.js | 0 .../_source/plugins/richcombo/plugin.js | 0 .../js/ckeditor.old/_source/plugins/save/plugin.js | 0 .../_source/plugins/scayt/dialogs/options.js | 0 .../_source/plugins/scayt/dialogs/toolbar.css | 0 .../js/ckeditor.old/_source/plugins/scayt/plugin.js | 0 .../_source/plugins/selection/plugin.js | 0 .../plugins/showblocks/images/block_address.png | Bin .../plugins/showblocks/images/block_blockquote.png | Bin .../_source/plugins/showblocks/images/block_div.png | Bin .../_source/plugins/showblocks/images/block_h1.png | Bin .../_source/plugins/showblocks/images/block_h2.png | Bin .../_source/plugins/showblocks/images/block_h3.png | Bin .../_source/plugins/showblocks/images/block_h4.png | Bin .../_source/plugins/showblocks/images/block_h5.png | Bin .../_source/plugins/showblocks/images/block_h6.png | Bin .../_source/plugins/showblocks/images/block_p.png | Bin .../_source/plugins/showblocks/images/block_pre.png | Bin .../_source/plugins/showblocks/plugin.js | 0 .../_source/plugins/showborders/plugin.js | 0 .../_source/plugins/smiley/dialogs/smiley.js | 0 .../_source/plugins/smiley/images/angel_smile.gif | Bin .../_source/plugins/smiley/images/angry_smile.gif | Bin .../_source/plugins/smiley/images/broken_heart.gif | Bin .../plugins/smiley/images/confused_smile.gif | Bin .../_source/plugins/smiley/images/cry_smile.gif | Bin .../_source/plugins/smiley/images/devil_smile.gif | Bin .../plugins/smiley/images/embaressed_smile.gif | Bin .../_source/plugins/smiley/images/envelope.gif | Bin .../_source/plugins/smiley/images/heart.gif | Bin .../_source/plugins/smiley/images/kiss.gif | Bin .../_source/plugins/smiley/images/lightbulb.gif | Bin .../_source/plugins/smiley/images/omg_smile.gif | Bin .../_source/plugins/smiley/images/regular_smile.gif | Bin .../_source/plugins/smiley/images/sad_smile.gif | Bin .../_source/plugins/smiley/images/shades_smile.gif | Bin .../_source/plugins/smiley/images/teeth_smile.gif | Bin .../_source/plugins/smiley/images/thumbs_down.gif | Bin .../_source/plugins/smiley/images/thumbs_up.gif | Bin .../_source/plugins/smiley/images/tounge_smile.gif | Bin .../smiley/images/whatchutalkingabout_smile.gif | Bin .../_source/plugins/smiley/images/wink_smile.gif | Bin .../ckeditor.old/_source/plugins/smiley/plugin.js | 0 .../_source/plugins/sourcearea/plugin.js | 0 .../plugins/specialchar/dialogs/specialchar.js | 0 .../_source/plugins/specialchar/lang/en.js | 0 .../_source/plugins/specialchar/plugin.js | 0 .../ckeditor.old/_source/plugins/styles/plugin.js | 0 .../_source/plugins/styles/styles/default.js | 0 .../_source/plugins/stylescombo/plugin.js | 0 .../_source/plugins/stylesheetparser/plugin.js | 0 .../js/ckeditor.old/_source/plugins/tab/plugin.js | 0 .../_source/plugins/table/dialogs/table.js | 0 .../js/ckeditor.old/_source/plugins/table/plugin.js | 0 .../_source/plugins/tableresize/plugin.js | 0 .../_source/plugins/tabletools/dialogs/tableCell.js | 0 .../_source/plugins/tabletools/plugin.js | 0 .../_source/plugins/templates/dialogs/templates.js | 0 .../_source/plugins/templates/plugin.js | 0 .../_source/plugins/templates/templates/default.js | 0 .../templates/templates/images/template1.gif | Bin .../templates/templates/images/template2.gif | Bin .../templates/templates/images/template3.gif | Bin .../ckeditor.old/_source/plugins/toolbar/plugin.js | 0 .../_source/plugins/uicolor/dialogs/uicolor.js | 0 .../ckeditor.old/_source/plugins/uicolor/lang/en.js | 0 .../ckeditor.old/_source/plugins/uicolor/lang/he.js | 0 .../ckeditor.old/_source/plugins/uicolor/plugin.js | 0 .../_source/plugins/uicolor/uicolor.gif | Bin .../_source/plugins/uicolor/yui/assets/hue_bg.png | Bin .../plugins/uicolor/yui/assets/hue_thumb.png | Bin .../plugins/uicolor/yui/assets/picker_mask.png | Bin .../plugins/uicolor/yui/assets/picker_thumb.png | Bin .../_source/plugins/uicolor/yui/assets/yui.css | 0 .../ckeditor.old/_source/plugins/uicolor/yui/yui.js | 0 .../js/ckeditor.old/_source/plugins/undo/plugin.js | 0 .../_source/plugins/wsc/dialogs/ciframe.html | 0 .../_source/plugins/wsc/dialogs/tmpFrameset.html | 0 .../_source/plugins/wsc/dialogs/wsc.css | 0 .../ckeditor.old/_source/plugins/wsc/dialogs/wsc.js | 0 .../js/ckeditor.old/_source/plugins/wsc/plugin.js | 0 .../_source/plugins/wysiwygarea/plugin.js | 0 .../js/ckeditor.old/_source/plugins/xml/plugin.js | 0 .../js/ckeditor.old/_source/skins/kama/dialog.css | 0 .../js/ckeditor.old/_source/skins/kama/editor.css | 0 .../_source/skins/kama/elementspath.css | 0 .../js/ckeditor.old/_source/skins/kama/icons.css | 0 .../js/ckeditor.old/_source/skins/kama/icons.png | Bin .../ckeditor.old/_source/skins/kama/icons_rtl.png | Bin .../_source/skins/kama/images/dialog_sides.gif | Bin .../_source/skins/kama/images/dialog_sides.png | Bin .../_source/skins/kama/images/dialog_sides_rtl.png | Bin .../ckeditor.old/_source/skins/kama/images/mini.gif | Bin .../_source/skins/kama/images/noimage.png | Bin .../_source/skins/kama/images/sprites.png | Bin .../_source/skins/kama/images/sprites_ie6.png | Bin .../_source/skins/kama/images/toolbar_start.gif | Bin .../js/ckeditor.old/_source/skins/kama/mainui.css | 0 .../js/ckeditor.old/_source/skins/kama/menu.css | 0 .../js/ckeditor.old/_source/skins/kama/panel.css | 0 .../js/ckeditor.old/_source/skins/kama/presets.css | 0 .../js/ckeditor.old/_source/skins/kama/reset.css | 0 .../ckeditor.old/_source/skins/kama/richcombo.css | 0 .../js/ckeditor.old/_source/skins/kama/skin.js | 0 .../ckeditor.old/_source/skins/kama/templates.css | 0 .../js/ckeditor.old/_source/skins/kama/toolbar.css | 0 .../_source/skins/office2003/dialog.css | 0 .../_source/skins/office2003/editor.css | 0 .../_source/skins/office2003/elementspath.css | 0 .../ckeditor.old/_source/skins/office2003/icons.css | 0 .../ckeditor.old/_source/skins/office2003/icons.png | Bin .../_source/skins/office2003/icons_rtl.png | Bin .../skins/office2003/images/dialog_sides.gif | Bin .../skins/office2003/images/dialog_sides.png | Bin .../skins/office2003/images/dialog_sides_rtl.png | Bin .../_source/skins/office2003/images/mini.gif | Bin .../_source/skins/office2003/images/noimage.png | Bin .../_source/skins/office2003/images/sprites.png | Bin .../_source/skins/office2003/images/sprites_ie6.png | Bin .../_source/skins/office2003/mainui.css | 0 .../ckeditor.old/_source/skins/office2003/menu.css | 0 .../ckeditor.old/_source/skins/office2003/panel.css | 0 .../_source/skins/office2003/presets.css | 0 .../ckeditor.old/_source/skins/office2003/reset.css | 0 .../_source/skins/office2003/richcombo.css | 0 .../ckeditor.old/_source/skins/office2003/skin.js | 0 .../_source/skins/office2003/templates.css | 0 .../_source/skins/office2003/toolbar.css | 0 .../js/ckeditor.old/_source/skins/v2/dialog.css | 0 .../js/ckeditor.old/_source/skins/v2/editor.css | 0 .../ckeditor.old/_source/skins/v2/elementspath.css | 0 .../js/ckeditor.old/_source/skins/v2/icons.css | 0 .../js/ckeditor.old/_source/skins/v2/icons.png | Bin .../js/ckeditor.old/_source/skins/v2/icons_rtl.png | Bin .../_source/skins/v2/images/dialog_sides.gif | Bin .../_source/skins/v2/images/dialog_sides.png | Bin .../_source/skins/v2/images/dialog_sides_rtl.png | Bin .../ckeditor.old/_source/skins/v2/images/mini.gif | Bin .../_source/skins/v2/images/noimage.png | Bin .../_source/skins/v2/images/sprites.png | Bin .../_source/skins/v2/images/sprites_ie6.png | Bin .../_source/skins/v2/images/toolbar_start.gif | Bin .../js/ckeditor.old/_source/skins/v2/mainui.css | 0 .../js/ckeditor.old/_source/skins/v2/menu.css | 0 .../js/ckeditor.old/_source/skins/v2/panel.css | 0 .../js/ckeditor.old/_source/skins/v2/presets.css | 0 .../js/ckeditor.old/_source/skins/v2/reset.css | 0 .../js/ckeditor.old/_source/skins/v2/richcombo.css | 0 .../js/ckeditor.old/_source/skins/v2/skin.js | 0 .../js/ckeditor.old/_source/skins/v2/templates.css | 0 .../js/ckeditor.old/_source/skins/v2/toolbar.css | 0 .../js/ckeditor.old/_source/themes/default/theme.js | 0 .../default/js/ckeditor.old/kcfinder/core/.htaccess | 0 .../js/ckeditor.old/kcfinder/core/autoload.php | 0 .../js/ckeditor.old/kcfinder/core/browser.php | 0 .../ckeditor.old/kcfinder/core/types/type_img.php | 0 .../ckeditor.old/kcfinder/core/types/type_mime.php | 0 .../js/ckeditor.old/kcfinder/core/uploader.php | 0 .../default/js/ckeditor.old/kcfinder/css/index.php | 0 .../default/js/ckeditor.old/kcfinder/doc/.htaccess | 0 .../default/js/ckeditor.old/kcfinder/doc/Changelog | 0 .../default/js/ckeditor.old/kcfinder/doc/INSTALL | 0 .../js/ckeditor.old/kcfinder/doc/LICENSE.GPL | 0 .../js/ckeditor.old/kcfinder/doc/LICENSE.LGPL | 0 .../default/js/ckeditor.old/kcfinder/doc/README | 0 .../js/ckeditor.old/kcfinder/js/browser/0bject.js | 0 .../ckeditor.old/kcfinder/js/browser/clipboard.js | 0 .../js/ckeditor.old/kcfinder/js/browser/files.js | 0 .../js/ckeditor.old/kcfinder/js/browser/folders.js | 0 .../js/ckeditor.old/kcfinder/js/browser/index.php | 0 .../js/ckeditor.old/kcfinder/js/browser/init.js | 0 .../js/ckeditor.old/kcfinder/js/browser/misc.js | 0 .../js/ckeditor.old/kcfinder/js/browser/settings.js | 0 .../js/ckeditor.old/kcfinder/js/browser/toolbar.js | 0 .../default/js/ckeditor.old/kcfinder/js/helper.js | 0 .../js/ckeditor.old/kcfinder/js/jquery.drag.js | 0 .../default/js/ckeditor.old/kcfinder/js/jquery.js | 0 .../ckeditor.old/kcfinder/js/jquery.rightClick.js | 0 .../default/js/ckeditor.old/kcfinder/lang/.htaccess | 0 .../default/js/ckeditor.old/kcfinder/lang/bg.php | 0 .../default/js/ckeditor.old/kcfinder/lang/cs.php | 0 .../default/js/ckeditor.old/kcfinder/lang/de.php | 0 .../default/js/ckeditor.old/kcfinder/lang/en.php | 0 .../default/js/ckeditor.old/kcfinder/lang/es.php | 0 .../default/js/ckeditor.old/kcfinder/lang/fr.php | 0 .../default/js/ckeditor.old/kcfinder/lang/hu.php | 0 .../default/js/ckeditor.old/kcfinder/lang/it.php | 0 .../default/js/ckeditor.old/kcfinder/lang/pl.php | 0 .../default/js/ckeditor.old/kcfinder/lang/pt.php | 0 .../default/js/ckeditor.old/kcfinder/lang/ru.php | 0 .../default/js/ckeditor.old/kcfinder/lib/.htaccess | 0 .../js/ckeditor.old/kcfinder/lib/class_gd.php | 0 .../js/ckeditor.old/kcfinder/lib/class_input.php | 0 .../ckeditor.old/kcfinder/lib/class_zipFolder.php | 0 .../js/ckeditor.old/kcfinder/lib/helper_dir.php | 0 .../js/ckeditor.old/kcfinder/lib/helper_file.php | 0 .../ckeditor.old/kcfinder/lib/helper_httpCache.php | 0 .../js/ckeditor.old/kcfinder/lib/helper_path.php | 0 .../js/ckeditor.old/kcfinder/lib/helper_text.php | 0 .../ckeditor.old/kcfinder/themes/oxygen/about.txt | 0 .../kcfinder/themes/oxygen/img/files/big/..png | Bin .../kcfinder/themes/oxygen/img/files/big/.image.png | Bin .../kcfinder/themes/oxygen/img/files/big/avi.png | Bin .../kcfinder/themes/oxygen/img/files/big/bat.png | Bin .../kcfinder/themes/oxygen/img/files/big/bmp.png | Bin .../kcfinder/themes/oxygen/img/files/big/bz2.png | Bin .../kcfinder/themes/oxygen/img/files/big/ccd.png | Bin .../kcfinder/themes/oxygen/img/files/big/cgi.png | Bin .../kcfinder/themes/oxygen/img/files/big/com.png | Bin .../kcfinder/themes/oxygen/img/files/big/csh.png | Bin .../kcfinder/themes/oxygen/img/files/big/cue.png | Bin .../kcfinder/themes/oxygen/img/files/big/deb.png | Bin .../kcfinder/themes/oxygen/img/files/big/dll.png | Bin .../kcfinder/themes/oxygen/img/files/big/doc.png | Bin .../kcfinder/themes/oxygen/img/files/big/docx.png | Bin .../kcfinder/themes/oxygen/img/files/big/exe.png | Bin .../kcfinder/themes/oxygen/img/files/big/fla.png | Bin .../kcfinder/themes/oxygen/img/files/big/flv.png | Bin .../kcfinder/themes/oxygen/img/files/big/fon.png | Bin .../kcfinder/themes/oxygen/img/files/big/gif.png | Bin .../kcfinder/themes/oxygen/img/files/big/gz.png | Bin .../kcfinder/themes/oxygen/img/files/big/htm.png | Bin .../kcfinder/themes/oxygen/img/files/big/html.png | Bin .../kcfinder/themes/oxygen/img/files/big/ini.png | Bin .../kcfinder/themes/oxygen/img/files/big/iso.png | Bin .../kcfinder/themes/oxygen/img/files/big/jar.png | Bin .../kcfinder/themes/oxygen/img/files/big/java.png | Bin .../kcfinder/themes/oxygen/img/files/big/jpeg.png | Bin .../kcfinder/themes/oxygen/img/files/big/jpg.png | Bin .../kcfinder/themes/oxygen/img/files/big/js.png | Bin .../kcfinder/themes/oxygen/img/files/big/mds.png | Bin .../kcfinder/themes/oxygen/img/files/big/mdx.png | Bin .../kcfinder/themes/oxygen/img/files/big/mid.png | Bin .../kcfinder/themes/oxygen/img/files/big/midi.png | Bin .../kcfinder/themes/oxygen/img/files/big/mkv.png | Bin .../kcfinder/themes/oxygen/img/files/big/mov.png | Bin .../kcfinder/themes/oxygen/img/files/big/mp3.png | Bin .../kcfinder/themes/oxygen/img/files/big/mpeg.png | Bin .../kcfinder/themes/oxygen/img/files/big/mpg.png | Bin .../kcfinder/themes/oxygen/img/files/big/nfo.png | Bin .../kcfinder/themes/oxygen/img/files/big/nrg.png | Bin .../kcfinder/themes/oxygen/img/files/big/ogg.png | Bin .../kcfinder/themes/oxygen/img/files/big/pdf.png | Bin .../kcfinder/themes/oxygen/img/files/big/php.png | Bin .../kcfinder/themes/oxygen/img/files/big/phps.png | Bin .../kcfinder/themes/oxygen/img/files/big/pl.png | Bin .../kcfinder/themes/oxygen/img/files/big/pm.png | Bin .../kcfinder/themes/oxygen/img/files/big/png.png | Bin .../kcfinder/themes/oxygen/img/files/big/ppt.png | Bin .../kcfinder/themes/oxygen/img/files/big/pptx.png | Bin .../kcfinder/themes/oxygen/img/files/big/qt.png | Bin .../kcfinder/themes/oxygen/img/files/big/rpm.png | Bin .../kcfinder/themes/oxygen/img/files/big/rtf.png | Bin .../kcfinder/themes/oxygen/img/files/big/sh.png | Bin .../kcfinder/themes/oxygen/img/files/big/srt.png | Bin .../kcfinder/themes/oxygen/img/files/big/sub.png | Bin .../kcfinder/themes/oxygen/img/files/big/swf.png | Bin .../kcfinder/themes/oxygen/img/files/big/tgz.png | Bin .../kcfinder/themes/oxygen/img/files/big/tif.png | Bin .../kcfinder/themes/oxygen/img/files/big/tiff.png | Bin .../themes/oxygen/img/files/big/torrent.png | Bin .../kcfinder/themes/oxygen/img/files/big/ttf.png | Bin .../kcfinder/themes/oxygen/img/files/big/txt.png | Bin .../kcfinder/themes/oxygen/img/files/big/wav.png | Bin .../kcfinder/themes/oxygen/img/files/big/wma.png | Bin .../kcfinder/themes/oxygen/img/files/big/xls.png | Bin .../kcfinder/themes/oxygen/img/files/big/xlsx.png | Bin .../kcfinder/themes/oxygen/img/files/big/zip.png | Bin .../kcfinder/themes/oxygen/img/files/small/..png | Bin .../themes/oxygen/img/files/small/.image.png | Bin .../kcfinder/themes/oxygen/img/files/small/avi.png | Bin .../kcfinder/themes/oxygen/img/files/small/bat.png | Bin .../kcfinder/themes/oxygen/img/files/small/bmp.png | Bin .../kcfinder/themes/oxygen/img/files/small/bz2.png | Bin .../kcfinder/themes/oxygen/img/files/small/ccd.png | Bin .../kcfinder/themes/oxygen/img/files/small/cgi.png | Bin .../kcfinder/themes/oxygen/img/files/small/com.png | Bin .../kcfinder/themes/oxygen/img/files/small/csh.png | Bin .../kcfinder/themes/oxygen/img/files/small/cue.png | Bin .../kcfinder/themes/oxygen/img/files/small/deb.png | Bin .../kcfinder/themes/oxygen/img/files/small/dll.png | Bin .../kcfinder/themes/oxygen/img/files/small/doc.png | Bin .../kcfinder/themes/oxygen/img/files/small/docx.png | Bin .../kcfinder/themes/oxygen/img/files/small/exe.png | Bin .../kcfinder/themes/oxygen/img/files/small/fla.png | Bin .../kcfinder/themes/oxygen/img/files/small/flv.png | Bin .../kcfinder/themes/oxygen/img/files/small/fon.png | Bin .../kcfinder/themes/oxygen/img/files/small/gif.png | Bin .../kcfinder/themes/oxygen/img/files/small/gz.png | Bin .../kcfinder/themes/oxygen/img/files/small/htm.png | Bin .../kcfinder/themes/oxygen/img/files/small/html.png | Bin .../kcfinder/themes/oxygen/img/files/small/ini.png | Bin .../kcfinder/themes/oxygen/img/files/small/iso.png | Bin .../kcfinder/themes/oxygen/img/files/small/jar.png | Bin .../kcfinder/themes/oxygen/img/files/small/java.png | Bin .../kcfinder/themes/oxygen/img/files/small/jpeg.png | Bin .../kcfinder/themes/oxygen/img/files/small/jpg.png | Bin .../kcfinder/themes/oxygen/img/files/small/js.png | Bin .../kcfinder/themes/oxygen/img/files/small/mds.png | Bin .../kcfinder/themes/oxygen/img/files/small/mdx.png | Bin .../kcfinder/themes/oxygen/img/files/small/mid.png | Bin .../kcfinder/themes/oxygen/img/files/small/midi.png | Bin .../kcfinder/themes/oxygen/img/files/small/mkv.png | Bin .../kcfinder/themes/oxygen/img/files/small/mov.png | Bin .../kcfinder/themes/oxygen/img/files/small/mp3.png | Bin .../kcfinder/themes/oxygen/img/files/small/mpeg.png | Bin .../kcfinder/themes/oxygen/img/files/small/mpg.png | Bin .../kcfinder/themes/oxygen/img/files/small/nfo.png | Bin .../kcfinder/themes/oxygen/img/files/small/nrg.png | Bin .../kcfinder/themes/oxygen/img/files/small/ogg.png | Bin .../kcfinder/themes/oxygen/img/files/small/pdf.png | Bin .../kcfinder/themes/oxygen/img/files/small/php.png | Bin .../kcfinder/themes/oxygen/img/files/small/phps.png | Bin .../kcfinder/themes/oxygen/img/files/small/pl.png | Bin .../kcfinder/themes/oxygen/img/files/small/pm.png | Bin .../kcfinder/themes/oxygen/img/files/small/png.png | Bin .../kcfinder/themes/oxygen/img/files/small/ppt.png | Bin .../kcfinder/themes/oxygen/img/files/small/pptx.png | Bin .../kcfinder/themes/oxygen/img/files/small/qt.png | Bin .../kcfinder/themes/oxygen/img/files/small/rpm.png | Bin .../kcfinder/themes/oxygen/img/files/small/rtf.png | Bin .../kcfinder/themes/oxygen/img/files/small/sh.png | Bin .../kcfinder/themes/oxygen/img/files/small/srt.png | Bin .../kcfinder/themes/oxygen/img/files/small/sub.png | Bin .../kcfinder/themes/oxygen/img/files/small/swf.png | Bin .../kcfinder/themes/oxygen/img/files/small/tgz.png | Bin .../kcfinder/themes/oxygen/img/files/small/tif.png | Bin .../kcfinder/themes/oxygen/img/files/small/tiff.png | Bin .../themes/oxygen/img/files/small/torrent.png | Bin .../kcfinder/themes/oxygen/img/files/small/ttf.png | Bin .../kcfinder/themes/oxygen/img/files/small/txt.png | Bin .../kcfinder/themes/oxygen/img/files/small/wav.png | Bin .../kcfinder/themes/oxygen/img/files/small/wma.png | Bin .../kcfinder/themes/oxygen/img/files/small/xls.png | Bin .../kcfinder/themes/oxygen/img/files/small/xlsx.png | Bin .../kcfinder/themes/oxygen/img/files/small/zip.png | Bin .../kcfinder/themes/oxygen/img/icons/about.png | Bin .../themes/oxygen/img/icons/clipboard-add.png | Bin .../themes/oxygen/img/icons/clipboard-clear.png | Bin .../kcfinder/themes/oxygen/img/icons/clipboard.png | Bin .../kcfinder/themes/oxygen/img/icons/copy.png | Bin .../kcfinder/themes/oxygen/img/icons/delete.png | Bin .../kcfinder/themes/oxygen/img/icons/download.png | Bin .../kcfinder/themes/oxygen/img/icons/folder-new.png | Bin .../kcfinder/themes/oxygen/img/icons/maximize.png | Bin .../kcfinder/themes/oxygen/img/icons/move.png | Bin .../kcfinder/themes/oxygen/img/icons/refresh.png | Bin .../kcfinder/themes/oxygen/img/icons/rename.png | Bin .../kcfinder/themes/oxygen/img/icons/select.png | Bin .../kcfinder/themes/oxygen/img/icons/settings.png | Bin .../kcfinder/themes/oxygen/img/icons/upload.png | Bin .../kcfinder/themes/oxygen/img/icons/view.png | Bin .../kcfinder/themes/oxygen/img/loading.gif | Bin .../kcfinder/themes/oxygen/img/tree/denied.png | Bin .../kcfinder/themes/oxygen/img/tree/folder.png | Bin .../themes/oxygen/img/tree/folder_current.png | Bin .../kcfinder/themes/oxygen/img/tree/minus.png | Bin .../kcfinder/themes/oxygen/img/tree/plus.png | Bin .../js/ckeditor.old/kcfinder/themes/oxygen/init.js | 0 .../ckeditor.old/kcfinder/themes/oxygen/style.css | 0 .../default/js/ckeditor.old/kcfinder/tpl/.htaccess | 0 .../js/ckeditor.old/kcfinder/tpl/tpl__css.php | 0 .../ckeditor.old/kcfinder/tpl/tpl__javascript.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_browser.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_chDir.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_deleteDir.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_error.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_expand.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_init.php | 0 .../js/ckeditor.old/kcfinder/tpl/tpl_renameDir.php | 0 .../js/ckeditor.old/kcfinder/upload/.htaccess | 0 .../plugins/MediaEmbed/dialogs/mediaembed.html | 0 .../ckeditor.old/plugins/MediaEmbed/images/icon.gif | Bin .../js/ckeditor.old/plugins/MediaEmbed/plugin.js | 0 .../plugins/a11yhelp/dialogs/a11yhelp.js | 0 .../js/ckeditor.old/plugins/a11yhelp/lang/en.js | 0 .../js/ckeditor.old/plugins/a11yhelp/lang/he.js | 0 .../js/ckeditor.old/plugins/about/dialogs/about.js | 0 .../plugins/about/dialogs/logo_ckeditor.png | Bin .../js/ckeditor.old/plugins/adobeair/plugin.js | 0 .../default/js/ckeditor.old/plugins/ajax/plugin.js | 0 .../js/ckeditor.old/plugins/autogrow/plugin.js | 0 .../js/ckeditor.old/plugins/bbcode/plugin.js | 0 .../ckeditor.old/plugins/clipboard/dialogs/paste.js | 0 .../plugins/colordialog/dialogs/colordialog.js | 0 .../js/ckeditor.old/plugins/devtools/lang/en.js | 0 .../js/ckeditor.old/plugins/devtools/plugin.js | 0 .../ckeditor.old/plugins/dialog/dialogDefinition.js | 0 .../js/ckeditor.old/plugins/div/dialogs/div.js | 0 .../plugins/docprops/dialogs/docprops.js | 0 .../js/ckeditor.old/plugins/docprops/plugin.js | 0 .../plugins/fakeobjects/images/spacer.gif | Bin .../js/ckeditor.old/plugins/find/dialogs/find.js | 0 .../js/ckeditor.old/plugins/flash/dialogs/flash.js | 0 .../plugins/flash/images/placeholder.png | Bin .../js/ckeditor.old/plugins/forms/dialogs/button.js | 0 .../ckeditor.old/plugins/forms/dialogs/checkbox.js | 0 .../js/ckeditor.old/plugins/forms/dialogs/form.js | 0 .../plugins/forms/dialogs/hiddenfield.js | 0 .../js/ckeditor.old/plugins/forms/dialogs/radio.js | 0 .../js/ckeditor.old/plugins/forms/dialogs/select.js | 0 .../ckeditor.old/plugins/forms/dialogs/textarea.js | 0 .../ckeditor.old/plugins/forms/dialogs/textfield.js | 0 .../plugins/forms/images/hiddenfield.gif | Bin .../ckeditor.old/plugins/iframe/dialogs/iframe.js | 0 .../plugins/iframe/images/placeholder.png | Bin .../js/ckeditor.old/plugins/iframedialog/plugin.js | 0 .../js/ckeditor.old/plugins/image/dialogs/image.js | 0 .../js/ckeditor.old/plugins/link/dialogs/anchor.js | 0 .../js/ckeditor.old/plugins/link/dialogs/link.js | 0 .../js/ckeditor.old/plugins/link/images/anchor.gif | Bin .../js/ckeditor.old/plugins/link/images/anchor.png | Bin .../plugins/liststyle/dialogs/liststyle.js | 0 .../plugins/pagebreak/images/pagebreak.gif | Bin .../plugins/pastefromword/filter/default.js | 0 .../plugins/pastetext/dialogs/pastetext.js | 0 .../plugins/placeholder/dialogs/placeholder.js | 0 .../js/ckeditor.old/plugins/placeholder/lang/en.js | 0 .../js/ckeditor.old/plugins/placeholder/lang/he.js | 0 .../plugins/placeholder/placeholder.gif | Bin .../js/ckeditor.old/plugins/placeholder/plugin.js | 0 .../ckeditor.old/plugins/scayt/dialogs/options.js | 0 .../ckeditor.old/plugins/scayt/dialogs/toolbar.css | 0 .../plugins/showblocks/images/block_address.png | Bin .../plugins/showblocks/images/block_blockquote.png | Bin .../plugins/showblocks/images/block_div.png | Bin .../plugins/showblocks/images/block_h1.png | Bin .../plugins/showblocks/images/block_h2.png | Bin .../plugins/showblocks/images/block_h3.png | Bin .../plugins/showblocks/images/block_h4.png | Bin .../plugins/showblocks/images/block_h5.png | Bin .../plugins/showblocks/images/block_h6.png | Bin .../plugins/showblocks/images/block_p.png | Bin .../plugins/showblocks/images/block_pre.png | Bin .../ckeditor.old/plugins/smiley/dialogs/smiley.js | 0 .../plugins/smiley/images/angel_smile.gif | Bin .../plugins/smiley/images/angry_smile.gif | Bin .../plugins/smiley/images/broken_heart.gif | Bin .../plugins/smiley/images/confused_smile.gif | Bin .../plugins/smiley/images/cry_smile.gif | Bin .../plugins/smiley/images/devil_smile.gif | Bin .../plugins/smiley/images/embaressed_smile.gif | Bin .../ckeditor.old/plugins/smiley/images/envelope.gif | Bin .../js/ckeditor.old/plugins/smiley/images/heart.gif | Bin .../js/ckeditor.old/plugins/smiley/images/kiss.gif | Bin .../plugins/smiley/images/lightbulb.gif | Bin .../plugins/smiley/images/omg_smile.gif | Bin .../plugins/smiley/images/regular_smile.gif | Bin .../plugins/smiley/images/sad_smile.gif | Bin .../plugins/smiley/images/shades_smile.gif | Bin .../plugins/smiley/images/teeth_smile.gif | Bin .../plugins/smiley/images/thumbs_down.gif | Bin .../plugins/smiley/images/thumbs_up.gif | Bin .../plugins/smiley/images/tounge_smile.gif | Bin .../smiley/images/whatchutalkingabout_smile.gif | Bin .../plugins/smiley/images/wink_smile.gif | Bin .../plugins/specialchar/dialogs/specialchar.js | 0 .../js/ckeditor.old/plugins/specialchar/lang/en.js | 0 .../ckeditor.old/plugins/styles/styles/default.js | 0 .../ckeditor.old/plugins/stylesheetparser/plugin.js | 0 .../js/ckeditor.old/plugins/table/dialogs/table.js | 0 .../js/ckeditor.old/plugins/tableresize/plugin.js | 0 .../plugins/tabletools/dialogs/tableCell.js | 0 .../plugins/templates/dialogs/templates.js | 0 .../plugins/templates/templates/default.js | 0 .../templates/templates/images/template1.gif | Bin .../templates/templates/images/template2.gif | Bin .../templates/templates/images/template3.gif | Bin .../ckeditor.old/plugins/uicolor/dialogs/uicolor.js | 0 .../js/ckeditor.old/plugins/uicolor/lang/en.js | 0 .../js/ckeditor.old/plugins/uicolor/lang/he.js | 0 .../js/ckeditor.old/plugins/uicolor/plugin.js | 0 .../js/ckeditor.old/plugins/uicolor/uicolor.gif | Bin .../plugins/uicolor/yui/assets/hue_bg.png | Bin .../plugins/uicolor/yui/assets/hue_thumb.png | Bin .../plugins/uicolor/yui/assets/picker_mask.png | Bin .../plugins/uicolor/yui/assets/picker_thumb.png | Bin .../ckeditor.old/plugins/uicolor/yui/assets/yui.css | 0 .../js/ckeditor.old/plugins/uicolor/yui/yui.js | 0 .../ckeditor.old/plugins/wsc/dialogs/ciframe.html | 0 .../plugins/wsc/dialogs/tmpFrameset.html | 0 .../js/ckeditor.old/plugins/wsc/dialogs/wsc.css | 0 .../js/ckeditor.old/plugins/wsc/dialogs/wsc.js | 0 .../default/js/ckeditor.old/plugins/xml/plugin.js | 0 .../ckeditor.old/samples/assets/inlineall/logo.png | Bin .../samples/assets/outputxhtml/outputxhtml.css | 0 .../js/ckeditor.old/samples/assets/posteddata.php | 0 .../js/ckeditor.old/samples/assets/sample.css | 0 .../js/ckeditor.old/samples/assets/sample.jpg | Bin .../samples/assets/uilanguages/languages.js | 0 .../samples/plugins/dialog/assets/my_dialog.js | 0 .../ckeditor.old/samples/plugins/dialog/dialog.html | 0 .../samples/plugins/enterkey/enterkey.html | 0 .../samples/plugins/toolbar/toolbar.html | 0 .../samples/plugins/wysiwygarea/fullpage.html | 0 .../default/js/ckeditor.old/skins/kama/dialog.css | 0 .../default/js/ckeditor.old/skins/kama/editor.css | 0 .../default/js/ckeditor.old/skins/kama/icons.png | Bin .../js/ckeditor.old/skins/kama/icons_rtl.png | Bin .../ckeditor.old/skins/kama/images/dialog_sides.gif | Bin .../ckeditor.old/skins/kama/images/dialog_sides.png | Bin .../skins/kama/images/dialog_sides_rtl.png | Bin .../js/ckeditor.old/skins/kama/images/mini.gif | Bin .../js/ckeditor.old/skins/kama/images/noimage.png | Bin .../js/ckeditor.old/skins/kama/images/sprites.png | Bin .../ckeditor.old/skins/kama/images/sprites_ie6.png | Bin .../skins/kama/images/toolbar_start.gif | Bin branding/default/js/ckeditor.old/skins/kama/skin.js | 0 .../js/ckeditor.old/skins/kama/templates.css | 0 .../default/js/ckeditor.old/skins/moono/dialog.css | 0 .../js/ckeditor.old/skins/moono/dialog_ie.css | 0 .../js/ckeditor.old/skins/moono/dialog_ie7.css | 0 .../js/ckeditor.old/skins/moono/dialog_ie8.css | 0 .../js/ckeditor.old/skins/moono/dialog_iequirks.css | 0 .../js/ckeditor.old/skins/moono/dialog_opera.css | 0 .../default/js/ckeditor.old/skins/moono/editor.css | 0 .../js/ckeditor.old/skins/moono/editor_gecko.css | 0 .../js/ckeditor.old/skins/moono/editor_ie.css | 0 .../js/ckeditor.old/skins/moono/editor_ie7.css | 0 .../js/ckeditor.old/skins/moono/editor_ie8.css | 0 .../js/ckeditor.old/skins/moono/editor_iequirks.css | 0 .../default/js/ckeditor.old/skins/moono/icons.png | Bin .../js/ckeditor.old/skins/moono/images/arrow.png | Bin .../js/ckeditor.old/skins/moono/images/close.png | Bin .../js/ckeditor.old/skins/moono/images/mini.png | Bin .../default/js/ckeditor.old/skins/moono/readme.md | 0 .../js/ckeditor.old/skins/office2003/dialog.css | 0 .../js/ckeditor.old/skins/office2003/editor.css | 0 .../js/ckeditor.old/skins/office2003/icons.png | Bin .../js/ckeditor.old/skins/office2003/icons_rtl.png | Bin .../skins/office2003/images/dialog_sides.gif | Bin .../skins/office2003/images/dialog_sides.png | Bin .../skins/office2003/images/dialog_sides_rtl.png | Bin .../ckeditor.old/skins/office2003/images/mini.gif | Bin .../skins/office2003/images/noimage.png | Bin .../skins/office2003/images/sprites.png | Bin .../skins/office2003/images/sprites_ie6.png | Bin .../js/ckeditor.old/skins/office2003/skin.js | 0 .../js/ckeditor.old/skins/office2003/templates.css | 0 .../default/js/ckeditor.old/skins/v2/dialog.css | 0 .../default/js/ckeditor.old/skins/v2/editor.css | 0 branding/default/js/ckeditor.old/skins/v2/icons.png | Bin .../default/js/ckeditor.old/skins/v2/icons_rtl.png | Bin .../ckeditor.old/skins/v2/images/dialog_sides.gif | Bin .../ckeditor.old/skins/v2/images/dialog_sides.png | Bin .../skins/v2/images/dialog_sides_rtl.png | Bin .../js/ckeditor.old/skins/v2/images/mini.gif | Bin .../js/ckeditor.old/skins/v2/images/noimage.png | Bin .../js/ckeditor.old/skins/v2/images/sprites.png | Bin .../js/ckeditor.old/skins/v2/images/sprites_ie6.png | Bin .../ckeditor.old/skins/v2/images/toolbar_start.gif | Bin branding/default/js/ckeditor.old/skins/v2/skin.js | 0 .../default/js/ckeditor.old/skins/v2/templates.css | 0 .../default/js/ckeditor.old/themes/default/theme.js | 0 branding/default/js/ckeditor/adapters/jquery.js | 0 branding/default/js/ckeditor/images/spacer.gif | Bin branding/default/js/ckeditor/kcfinder/browse.php | 0 branding/default/js/ckeditor/kcfinder/config.php | 0 .../default/js/ckeditor/kcfinder/core/.htaccess | 0 .../default/js/ckeditor/kcfinder/core/autoload.php | 0 .../default/js/ckeditor/kcfinder/core/browser.php | 0 .../js/ckeditor/kcfinder/core/types/type_img.php | 0 .../js/ckeditor/kcfinder/core/types/type_mime.php | 0 .../default/js/ckeditor/kcfinder/core/uploader.php | 0 branding/default/js/ckeditor/kcfinder/css/index.php | 0 branding/default/js/ckeditor/kcfinder/doc/.htaccess | 0 branding/default/js/ckeditor/kcfinder/doc/Changelog | 0 branding/default/js/ckeditor/kcfinder/doc/INSTALL | 0 .../default/js/ckeditor/kcfinder/doc/LICENSE.GPL | 0 .../default/js/ckeditor/kcfinder/doc/LICENSE.LGPL | 0 branding/default/js/ckeditor/kcfinder/doc/README | 0 .../js/ckeditor/kcfinder/js/browser/0bject.js | 0 .../js/ckeditor/kcfinder/js/browser/clipboard.js | 0 .../js/ckeditor/kcfinder/js/browser/files.js | 0 .../js/ckeditor/kcfinder/js/browser/folders.js | 0 .../js/ckeditor/kcfinder/js/browser/index.php | 0 .../default/js/ckeditor/kcfinder/js/browser/init.js | 0 .../default/js/ckeditor/kcfinder/js/browser/misc.js | 0 .../js/ckeditor/kcfinder/js/browser/settings.js | 0 .../js/ckeditor/kcfinder/js/browser/toolbar.js | 0 branding/default/js/ckeditor/kcfinder/js/helper.js | 0 .../default/js/ckeditor/kcfinder/js/jquery.drag.js | 0 branding/default/js/ckeditor/kcfinder/js/jquery.js | 0 .../js/ckeditor/kcfinder/js/jquery.rightClick.js | 0 .../default/js/ckeditor/kcfinder/js_localize.php | 0 .../default/js/ckeditor/kcfinder/lang/.htaccess | 0 branding/default/js/ckeditor/kcfinder/lang/bg.php | 0 branding/default/js/ckeditor/kcfinder/lang/cs.php | 0 branding/default/js/ckeditor/kcfinder/lang/de.php | 0 branding/default/js/ckeditor/kcfinder/lang/en.php | 0 branding/default/js/ckeditor/kcfinder/lang/es.php | 0 branding/default/js/ckeditor/kcfinder/lang/fr.php | 0 branding/default/js/ckeditor/kcfinder/lang/hu.php | 0 branding/default/js/ckeditor/kcfinder/lang/it.php | 0 branding/default/js/ckeditor/kcfinder/lang/pl.php | 0 branding/default/js/ckeditor/kcfinder/lang/pt.php | 0 branding/default/js/ckeditor/kcfinder/lang/ru.php | 0 branding/default/js/ckeditor/kcfinder/lib/.htaccess | 0 .../default/js/ckeditor/kcfinder/lib/class_gd.php | 0 .../js/ckeditor/kcfinder/lib/class_input.php | 0 .../js/ckeditor/kcfinder/lib/class_zipFolder.php | 0 .../default/js/ckeditor/kcfinder/lib/helper_dir.php | 0 .../js/ckeditor/kcfinder/lib/helper_file.php | 0 .../js/ckeditor/kcfinder/lib/helper_httpCache.php | 0 .../js/ckeditor/kcfinder/lib/helper_path.php | 0 .../js/ckeditor/kcfinder/lib/helper_text.php | 0 .../js/ckeditor/kcfinder/themes/oxygen/about.txt | 0 .../kcfinder/themes/oxygen/img/files/big/..png | Bin .../kcfinder/themes/oxygen/img/files/big/.image.png | Bin .../kcfinder/themes/oxygen/img/files/big/avi.png | Bin .../kcfinder/themes/oxygen/img/files/big/bat.png | Bin .../kcfinder/themes/oxygen/img/files/big/bmp.png | Bin .../kcfinder/themes/oxygen/img/files/big/bz2.png | Bin .../kcfinder/themes/oxygen/img/files/big/ccd.png | Bin .../kcfinder/themes/oxygen/img/files/big/cgi.png | Bin .../kcfinder/themes/oxygen/img/files/big/com.png | Bin .../kcfinder/themes/oxygen/img/files/big/csh.png | Bin .../kcfinder/themes/oxygen/img/files/big/cue.png | Bin .../kcfinder/themes/oxygen/img/files/big/deb.png | Bin .../kcfinder/themes/oxygen/img/files/big/dll.png | Bin .../kcfinder/themes/oxygen/img/files/big/doc.png | Bin .../kcfinder/themes/oxygen/img/files/big/docx.png | Bin .../kcfinder/themes/oxygen/img/files/big/exe.png | Bin .../kcfinder/themes/oxygen/img/files/big/fla.png | Bin .../kcfinder/themes/oxygen/img/files/big/flv.png | Bin .../kcfinder/themes/oxygen/img/files/big/fon.png | Bin .../kcfinder/themes/oxygen/img/files/big/gif.png | Bin .../kcfinder/themes/oxygen/img/files/big/gz.png | Bin .../kcfinder/themes/oxygen/img/files/big/htm.png | Bin .../kcfinder/themes/oxygen/img/files/big/html.png | Bin .../kcfinder/themes/oxygen/img/files/big/ini.png | Bin .../kcfinder/themes/oxygen/img/files/big/iso.png | Bin .../kcfinder/themes/oxygen/img/files/big/jar.png | Bin .../kcfinder/themes/oxygen/img/files/big/java.png | Bin .../kcfinder/themes/oxygen/img/files/big/jpeg.png | Bin .../kcfinder/themes/oxygen/img/files/big/jpg.png | Bin .../kcfinder/themes/oxygen/img/files/big/js.png | Bin .../kcfinder/themes/oxygen/img/files/big/mds.png | Bin .../kcfinder/themes/oxygen/img/files/big/mdx.png | Bin .../kcfinder/themes/oxygen/img/files/big/mid.png | Bin .../kcfinder/themes/oxygen/img/files/big/midi.png | Bin .../kcfinder/themes/oxygen/img/files/big/mkv.png | Bin .../kcfinder/themes/oxygen/img/files/big/mov.png | Bin .../kcfinder/themes/oxygen/img/files/big/mp3.png | Bin .../kcfinder/themes/oxygen/img/files/big/mpeg.png | Bin .../kcfinder/themes/oxygen/img/files/big/mpg.png | Bin .../kcfinder/themes/oxygen/img/files/big/nfo.png | Bin .../kcfinder/themes/oxygen/img/files/big/nrg.png | Bin .../kcfinder/themes/oxygen/img/files/big/ogg.png | Bin .../kcfinder/themes/oxygen/img/files/big/pdf.png | Bin .../kcfinder/themes/oxygen/img/files/big/php.png | Bin .../kcfinder/themes/oxygen/img/files/big/phps.png | Bin .../kcfinder/themes/oxygen/img/files/big/pl.png | Bin .../kcfinder/themes/oxygen/img/files/big/pm.png | Bin .../kcfinder/themes/oxygen/img/files/big/png.png | Bin .../kcfinder/themes/oxygen/img/files/big/ppt.png | Bin .../kcfinder/themes/oxygen/img/files/big/pptx.png | Bin .../kcfinder/themes/oxygen/img/files/big/qt.png | Bin .../kcfinder/themes/oxygen/img/files/big/rpm.png | Bin .../kcfinder/themes/oxygen/img/files/big/rtf.png | Bin .../kcfinder/themes/oxygen/img/files/big/sh.png | Bin .../kcfinder/themes/oxygen/img/files/big/srt.png | Bin .../kcfinder/themes/oxygen/img/files/big/sub.png | Bin .../kcfinder/themes/oxygen/img/files/big/swf.png | Bin .../kcfinder/themes/oxygen/img/files/big/tgz.png | Bin .../kcfinder/themes/oxygen/img/files/big/tif.png | Bin .../kcfinder/themes/oxygen/img/files/big/tiff.png | Bin .../themes/oxygen/img/files/big/torrent.png | Bin .../kcfinder/themes/oxygen/img/files/big/ttf.png | Bin .../kcfinder/themes/oxygen/img/files/big/txt.png | Bin .../kcfinder/themes/oxygen/img/files/big/wav.png | Bin .../kcfinder/themes/oxygen/img/files/big/wma.png | Bin .../kcfinder/themes/oxygen/img/files/big/xls.png | Bin .../kcfinder/themes/oxygen/img/files/big/xlsx.png | Bin .../kcfinder/themes/oxygen/img/files/big/zip.png | Bin .../kcfinder/themes/oxygen/img/files/small/..png | Bin .../themes/oxygen/img/files/small/.image.png | Bin .../kcfinder/themes/oxygen/img/files/small/avi.png | Bin .../kcfinder/themes/oxygen/img/files/small/bat.png | Bin .../kcfinder/themes/oxygen/img/files/small/bmp.png | Bin .../kcfinder/themes/oxygen/img/files/small/bz2.png | Bin .../kcfinder/themes/oxygen/img/files/small/ccd.png | Bin .../kcfinder/themes/oxygen/img/files/small/cgi.png | Bin .../kcfinder/themes/oxygen/img/files/small/com.png | Bin .../kcfinder/themes/oxygen/img/files/small/csh.png | Bin .../kcfinder/themes/oxygen/img/files/small/cue.png | Bin .../kcfinder/themes/oxygen/img/files/small/deb.png | Bin .../kcfinder/themes/oxygen/img/files/small/dll.png | Bin .../kcfinder/themes/oxygen/img/files/small/doc.png | Bin .../kcfinder/themes/oxygen/img/files/small/docx.png | Bin .../kcfinder/themes/oxygen/img/files/small/exe.png | Bin .../kcfinder/themes/oxygen/img/files/small/fla.png | Bin .../kcfinder/themes/oxygen/img/files/small/flv.png | Bin .../kcfinder/themes/oxygen/img/files/small/fon.png | Bin .../kcfinder/themes/oxygen/img/files/small/gif.png | Bin .../kcfinder/themes/oxygen/img/files/small/gz.png | Bin .../kcfinder/themes/oxygen/img/files/small/htm.png | Bin .../kcfinder/themes/oxygen/img/files/small/html.png | Bin .../kcfinder/themes/oxygen/img/files/small/ini.png | Bin .../kcfinder/themes/oxygen/img/files/small/iso.png | Bin .../kcfinder/themes/oxygen/img/files/small/jar.png | Bin .../kcfinder/themes/oxygen/img/files/small/java.png | Bin .../kcfinder/themes/oxygen/img/files/small/jpeg.png | Bin .../kcfinder/themes/oxygen/img/files/small/jpg.png | Bin .../kcfinder/themes/oxygen/img/files/small/js.png | Bin .../kcfinder/themes/oxygen/img/files/small/mds.png | Bin .../kcfinder/themes/oxygen/img/files/small/mdx.png | Bin .../kcfinder/themes/oxygen/img/files/small/mid.png | Bin .../kcfinder/themes/oxygen/img/files/small/midi.png | Bin .../kcfinder/themes/oxygen/img/files/small/mkv.png | Bin .../kcfinder/themes/oxygen/img/files/small/mov.png | Bin .../kcfinder/themes/oxygen/img/files/small/mp3.png | Bin .../kcfinder/themes/oxygen/img/files/small/mpeg.png | Bin .../kcfinder/themes/oxygen/img/files/small/mpg.png | Bin .../kcfinder/themes/oxygen/img/files/small/nfo.png | Bin .../kcfinder/themes/oxygen/img/files/small/nrg.png | Bin .../kcfinder/themes/oxygen/img/files/small/ogg.png | Bin .../kcfinder/themes/oxygen/img/files/small/pdf.png | Bin .../kcfinder/themes/oxygen/img/files/small/php.png | Bin .../kcfinder/themes/oxygen/img/files/small/phps.png | Bin .../kcfinder/themes/oxygen/img/files/small/pl.png | Bin .../kcfinder/themes/oxygen/img/files/small/pm.png | Bin .../kcfinder/themes/oxygen/img/files/small/png.png | Bin .../kcfinder/themes/oxygen/img/files/small/ppt.png | Bin .../kcfinder/themes/oxygen/img/files/small/pptx.png | Bin .../kcfinder/themes/oxygen/img/files/small/qt.png | Bin .../kcfinder/themes/oxygen/img/files/small/rpm.png | Bin .../kcfinder/themes/oxygen/img/files/small/rtf.png | Bin .../kcfinder/themes/oxygen/img/files/small/sh.png | Bin .../kcfinder/themes/oxygen/img/files/small/srt.png | Bin .../kcfinder/themes/oxygen/img/files/small/sub.png | Bin .../kcfinder/themes/oxygen/img/files/small/swf.png | Bin .../kcfinder/themes/oxygen/img/files/small/tgz.png | Bin .../kcfinder/themes/oxygen/img/files/small/tif.png | Bin .../kcfinder/themes/oxygen/img/files/small/tiff.png | Bin .../themes/oxygen/img/files/small/torrent.png | Bin .../kcfinder/themes/oxygen/img/files/small/ttf.png | Bin .../kcfinder/themes/oxygen/img/files/small/txt.png | Bin .../kcfinder/themes/oxygen/img/files/small/wav.png | Bin .../kcfinder/themes/oxygen/img/files/small/wma.png | Bin .../kcfinder/themes/oxygen/img/files/small/xls.png | Bin .../kcfinder/themes/oxygen/img/files/small/xlsx.png | Bin .../kcfinder/themes/oxygen/img/files/small/zip.png | Bin .../kcfinder/themes/oxygen/img/icons/about.png | Bin .../themes/oxygen/img/icons/clipboard-add.png | Bin .../themes/oxygen/img/icons/clipboard-clear.png | Bin .../kcfinder/themes/oxygen/img/icons/clipboard.png | Bin .../kcfinder/themes/oxygen/img/icons/copy.png | Bin .../kcfinder/themes/oxygen/img/icons/delete.png | Bin .../kcfinder/themes/oxygen/img/icons/download.png | Bin .../kcfinder/themes/oxygen/img/icons/folder-new.png | Bin .../kcfinder/themes/oxygen/img/icons/maximize.png | Bin .../kcfinder/themes/oxygen/img/icons/move.png | Bin .../kcfinder/themes/oxygen/img/icons/refresh.png | Bin .../kcfinder/themes/oxygen/img/icons/rename.png | Bin .../kcfinder/themes/oxygen/img/icons/select.png | Bin .../kcfinder/themes/oxygen/img/icons/settings.png | Bin .../kcfinder/themes/oxygen/img/icons/upload.png | Bin .../kcfinder/themes/oxygen/img/icons/view.png | Bin .../ckeditor/kcfinder/themes/oxygen/img/loading.gif | Bin .../kcfinder/themes/oxygen/img/tree/denied.png | Bin .../kcfinder/themes/oxygen/img/tree/folder.png | Bin .../themes/oxygen/img/tree/folder_current.png | Bin .../kcfinder/themes/oxygen/img/tree/minus.png | Bin .../kcfinder/themes/oxygen/img/tree/plus.png | Bin .../js/ckeditor/kcfinder/themes/oxygen/init.js | 0 .../js/ckeditor/kcfinder/themes/oxygen/style.css | 0 branding/default/js/ckeditor/kcfinder/tpl/.htaccess | 0 .../default/js/ckeditor/kcfinder/tpl/tpl__css.php | 0 .../js/ckeditor/kcfinder/tpl/tpl__javascript.php | 0 .../js/ckeditor/kcfinder/tpl/tpl_browser.php | 0 .../default/js/ckeditor/kcfinder/tpl/tpl_chDir.php | 0 .../js/ckeditor/kcfinder/tpl/tpl_deleteDir.php | 0 .../default/js/ckeditor/kcfinder/tpl/tpl_error.php | 0 .../default/js/ckeditor/kcfinder/tpl/tpl_expand.php | 0 .../default/js/ckeditor/kcfinder/tpl/tpl_init.php | 0 .../js/ckeditor/kcfinder/tpl/tpl_renameDir.php | 0 branding/default/js/ckeditor/kcfinder/upload.php | 0 .../default/js/ckeditor/kcfinder/upload/.htaccess | 0 branding/default/js/ckeditor/lang/_languages.js | 0 .../default/js/ckeditor/lang/_translationstatus.txt | 0 branding/default/js/ckeditor/lang/af.js | 0 branding/default/js/ckeditor/lang/ar.js | 0 branding/default/js/ckeditor/lang/bg.js | 0 branding/default/js/ckeditor/lang/bn.js | 0 branding/default/js/ckeditor/lang/bs.js | 0 branding/default/js/ckeditor/lang/ca.js | 0 branding/default/js/ckeditor/lang/cs.js | 0 branding/default/js/ckeditor/lang/cy.js | 0 branding/default/js/ckeditor/lang/da.js | 0 branding/default/js/ckeditor/lang/de.js | 0 branding/default/js/ckeditor/lang/el.js | 0 branding/default/js/ckeditor/lang/en-au.js | 0 branding/default/js/ckeditor/lang/en-ca.js | 0 branding/default/js/ckeditor/lang/en-gb.js | 0 branding/default/js/ckeditor/lang/en.js | 0 branding/default/js/ckeditor/lang/eo.js | 0 branding/default/js/ckeditor/lang/es.js | 0 branding/default/js/ckeditor/lang/et.js | 0 branding/default/js/ckeditor/lang/eu.js | 0 branding/default/js/ckeditor/lang/fa.js | 0 branding/default/js/ckeditor/lang/fi.js | 0 branding/default/js/ckeditor/lang/fo.js | 0 branding/default/js/ckeditor/lang/fr-ca.js | 0 branding/default/js/ckeditor/lang/fr.js | 0 branding/default/js/ckeditor/lang/gl.js | 0 branding/default/js/ckeditor/lang/gu.js | 0 branding/default/js/ckeditor/lang/he.js | 0 branding/default/js/ckeditor/lang/hi.js | 0 branding/default/js/ckeditor/lang/hr.js | 0 branding/default/js/ckeditor/lang/hu.js | 0 branding/default/js/ckeditor/lang/is.js | 0 branding/default/js/ckeditor/lang/it.js | 0 branding/default/js/ckeditor/lang/ja.js | 0 branding/default/js/ckeditor/lang/ka.js | 0 branding/default/js/ckeditor/lang/km.js | 0 branding/default/js/ckeditor/lang/ko.js | 0 branding/default/js/ckeditor/lang/lt.js | 0 branding/default/js/ckeditor/lang/lv.js | 0 branding/default/js/ckeditor/lang/mn.js | 0 branding/default/js/ckeditor/lang/ms.js | 0 branding/default/js/ckeditor/lang/nb.js | 0 branding/default/js/ckeditor/lang/nl.js | 0 branding/default/js/ckeditor/lang/no.js | 0 branding/default/js/ckeditor/lang/pl.js | 0 branding/default/js/ckeditor/lang/pt-br.js | 0 branding/default/js/ckeditor/lang/pt.js | 0 branding/default/js/ckeditor/lang/ro.js | 0 branding/default/js/ckeditor/lang/ru.js | 0 branding/default/js/ckeditor/lang/sk.js | 0 branding/default/js/ckeditor/lang/sl.js | 0 branding/default/js/ckeditor/lang/sr-latn.js | 0 branding/default/js/ckeditor/lang/sr.js | 0 branding/default/js/ckeditor/lang/sv.js | 0 branding/default/js/ckeditor/lang/th.js | 0 branding/default/js/ckeditor/lang/tr.js | 0 branding/default/js/ckeditor/lang/uk.js | 0 branding/default/js/ckeditor/lang/vi.js | 0 branding/default/js/ckeditor/lang/zh-cn.js | 0 branding/default/js/ckeditor/lang/zh.js | 0 .../plugins/MediaEmbed/dialogs/mediaembed.html | 0 .../js/ckeditor/plugins/MediaEmbed/images/icon.gif | Bin .../js/ckeditor/plugins/MediaEmbed/plugin.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js | 0 .../a11yhelp/dialogs/lang/_translationstatus.txt | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js | 0 .../js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js | 0 .../default/js/ckeditor/plugins/a11yhelp/lang/en.js | 0 .../default/js/ckeditor/plugins/a11yhelp/lang/he.js | 0 .../js/ckeditor/plugins/about/dialogs/about.js | 0 .../plugins/about/dialogs/logo_ckeditor.png | Bin .../default/js/ckeditor/plugins/adobeair/plugin.js | 0 branding/default/js/ckeditor/plugins/ajax/plugin.js | 0 .../default/js/ckeditor/plugins/autogrow/plugin.js | 0 .../default/js/ckeditor/plugins/bbcode/plugin.js | 0 .../js/ckeditor/plugins/clipboard/dialogs/paste.js | 0 .../ckeditor/plugins/codemirror/css/codemirror.css | 0 .../js/ckeditor/plugins/codemirror/js/codemirror.js | 0 .../js/ckeditor/plugins/codemirror/js/css.js | 0 .../js/ckeditor/plugins/codemirror/js/htmlmixed.js | 0 .../js/ckeditor/plugins/codemirror/js/javascript.js | 0 .../ckeditor/plugins/codemirror/js/util/closetag.js | 0 .../ckeditor/plugins/codemirror/js/util/colorize.js | 0 .../plugins/codemirror/js/util/continuecomment.js | 0 .../plugins/codemirror/js/util/continuelist.js | 0 .../ckeditor/plugins/codemirror/js/util/dialog.css | 0 .../ckeditor/plugins/codemirror/js/util/dialog.js | 0 .../ckeditor/plugins/codemirror/js/util/foldcode.js | 0 .../plugins/codemirror/js/util/formatting.js | 0 .../plugins/codemirror/js/util/javascript-hint.js | 0 .../ckeditor/plugins/codemirror/js/util/loadmode.js | 0 .../plugins/codemirror/js/util/match-highlighter.js | 0 .../plugins/codemirror/js/util/matchbrackets.js | 0 .../plugins/codemirror/js/util/multiplex.js | 0 .../ckeditor/plugins/codemirror/js/util/overlay.js | 0 .../ckeditor/plugins/codemirror/js/util/pig-hint.js | 0 .../codemirror/js/util/runmode-standalone.js | 0 .../ckeditor/plugins/codemirror/js/util/runmode.js | 0 .../ckeditor/plugins/codemirror/js/util/search.js | 0 .../plugins/codemirror/js/util/searchcursor.js | 0 .../plugins/codemirror/js/util/simple-hint.css | 0 .../plugins/codemirror/js/util/simple-hint.js | 0 .../ckeditor/plugins/codemirror/js/util/xml-hint.js | 0 .../js/ckeditor/plugins/codemirror/js/xml.js | 0 .../plugins/codemirror/theme/ambiance-mobile.css | 0 .../ckeditor/plugins/codemirror/theme/ambiance.css | 0 .../plugins/codemirror/theme/blackboard.css | 0 .../js/ckeditor/plugins/codemirror/theme/cobalt.css | 0 .../ckeditor/plugins/codemirror/theme/eclipse.css | 0 .../ckeditor/plugins/codemirror/theme/elegant.css | 0 .../plugins/codemirror/theme/erlang-dark.css | 0 .../plugins/codemirror/theme/lesser-dark.css | 0 .../ckeditor/plugins/codemirror/theme/monokai.css | 0 .../js/ckeditor/plugins/codemirror/theme/neat.css | 0 .../js/ckeditor/plugins/codemirror/theme/night.css | 0 .../ckeditor/plugins/codemirror/theme/rubyblue.css | 0 .../ckeditor/plugins/codemirror/theme/solarized.css | 0 .../ckeditor/plugins/codemirror/theme/twilight.css | 0 .../plugins/codemirror/theme/vibrant-ink.css | 0 .../ckeditor/plugins/codemirror/theme/xq-dark.css | 0 .../ckeditor/plugins/colorbutton/icons/bgcolor.png | Bin .../plugins/colorbutton/icons/textcolor.png | Bin .../js/ckeditor/plugins/colorbutton/lang/af.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ar.js | 0 .../js/ckeditor/plugins/colorbutton/lang/bg.js | 0 .../js/ckeditor/plugins/colorbutton/lang/bn.js | 0 .../js/ckeditor/plugins/colorbutton/lang/bs.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ca.js | 0 .../js/ckeditor/plugins/colorbutton/lang/cs.js | 0 .../js/ckeditor/plugins/colorbutton/lang/cy.js | 0 .../js/ckeditor/plugins/colorbutton/lang/da.js | 0 .../js/ckeditor/plugins/colorbutton/lang/de.js | 0 .../js/ckeditor/plugins/colorbutton/lang/el.js | 0 .../js/ckeditor/plugins/colorbutton/lang/en-au.js | 0 .../js/ckeditor/plugins/colorbutton/lang/en-ca.js | 0 .../js/ckeditor/plugins/colorbutton/lang/en-gb.js | 0 .../js/ckeditor/plugins/colorbutton/lang/en.js | 0 .../js/ckeditor/plugins/colorbutton/lang/eo.js | 0 .../js/ckeditor/plugins/colorbutton/lang/es.js | 0 .../js/ckeditor/plugins/colorbutton/lang/et.js | 0 .../js/ckeditor/plugins/colorbutton/lang/eu.js | 0 .../js/ckeditor/plugins/colorbutton/lang/fa.js | 0 .../js/ckeditor/plugins/colorbutton/lang/fi.js | 0 .../js/ckeditor/plugins/colorbutton/lang/fo.js | 0 .../js/ckeditor/plugins/colorbutton/lang/fr-ca.js | 0 .../js/ckeditor/plugins/colorbutton/lang/fr.js | 0 .../js/ckeditor/plugins/colorbutton/lang/gl.js | 0 .../js/ckeditor/plugins/colorbutton/lang/gu.js | 0 .../js/ckeditor/plugins/colorbutton/lang/he.js | 0 .../js/ckeditor/plugins/colorbutton/lang/hi.js | 0 .../js/ckeditor/plugins/colorbutton/lang/hr.js | 0 .../js/ckeditor/plugins/colorbutton/lang/hu.js | 0 .../js/ckeditor/plugins/colorbutton/lang/is.js | 0 .../js/ckeditor/plugins/colorbutton/lang/it.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ja.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ka.js | 0 .../js/ckeditor/plugins/colorbutton/lang/km.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ko.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ku.js | 0 .../js/ckeditor/plugins/colorbutton/lang/lt.js | 0 .../js/ckeditor/plugins/colorbutton/lang/lv.js | 0 .../js/ckeditor/plugins/colorbutton/lang/mk.js | 0 .../js/ckeditor/plugins/colorbutton/lang/mn.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ms.js | 0 .../js/ckeditor/plugins/colorbutton/lang/nb.js | 0 .../js/ckeditor/plugins/colorbutton/lang/nl.js | 0 .../js/ckeditor/plugins/colorbutton/lang/no.js | 0 .../js/ckeditor/plugins/colorbutton/lang/pl.js | 0 .../js/ckeditor/plugins/colorbutton/lang/pt-br.js | 0 .../js/ckeditor/plugins/colorbutton/lang/pt.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ro.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ru.js | 0 .../js/ckeditor/plugins/colorbutton/lang/sk.js | 0 .../js/ckeditor/plugins/colorbutton/lang/sl.js | 0 .../js/ckeditor/plugins/colorbutton/lang/sr-latn.js | 0 .../js/ckeditor/plugins/colorbutton/lang/sr.js | 0 .../js/ckeditor/plugins/colorbutton/lang/sv.js | 0 .../js/ckeditor/plugins/colorbutton/lang/th.js | 0 .../js/ckeditor/plugins/colorbutton/lang/tr.js | 0 .../js/ckeditor/plugins/colorbutton/lang/ug.js | 0 .../js/ckeditor/plugins/colorbutton/lang/uk.js | 0 .../js/ckeditor/plugins/colorbutton/lang/vi.js | 0 .../js/ckeditor/plugins/colorbutton/lang/zh-cn.js | 0 .../js/ckeditor/plugins/colorbutton/lang/zh.js | 0 .../js/ckeditor/plugins/colorbutton/plugin.js | 0 .../plugins/colordialog/dialogs/colordialog.js | 0 .../default/js/ckeditor/plugins/devtools/lang/en.js | 0 .../default/js/ckeditor/plugins/devtools/plugin.js | 0 .../js/ckeditor/plugins/dialog/dialogDefinition.js | 0 .../default/js/ckeditor/plugins/div/dialogs/div.js | 0 .../ckeditor/plugins/docprops/dialogs/docprops.js | 0 .../default/js/ckeditor/plugins/docprops/plugin.js | 0 .../ckeditor/plugins/fakeobjects/images/spacer.gif | Bin .../js/ckeditor/plugins/find/dialogs/find.js | 0 .../js/ckeditor/plugins/flash/dialogs/flash.js | 0 .../ckeditor/plugins/flash/images/placeholder.png | Bin .../default/js/ckeditor/plugins/font/lang/af.js | 0 .../default/js/ckeditor/plugins/font/lang/ar.js | 0 .../default/js/ckeditor/plugins/font/lang/bg.js | 0 .../default/js/ckeditor/plugins/font/lang/bn.js | 0 .../default/js/ckeditor/plugins/font/lang/bs.js | 0 .../default/js/ckeditor/plugins/font/lang/ca.js | 0 .../default/js/ckeditor/plugins/font/lang/cs.js | 0 .../default/js/ckeditor/plugins/font/lang/cy.js | 0 .../default/js/ckeditor/plugins/font/lang/da.js | 0 .../default/js/ckeditor/plugins/font/lang/de.js | 0 .../default/js/ckeditor/plugins/font/lang/el.js | 0 .../default/js/ckeditor/plugins/font/lang/en-au.js | 0 .../default/js/ckeditor/plugins/font/lang/en-ca.js | 0 .../default/js/ckeditor/plugins/font/lang/en-gb.js | 0 .../default/js/ckeditor/plugins/font/lang/en.js | 0 .../default/js/ckeditor/plugins/font/lang/eo.js | 0 .../default/js/ckeditor/plugins/font/lang/es.js | 0 .../default/js/ckeditor/plugins/font/lang/et.js | 0 .../default/js/ckeditor/plugins/font/lang/eu.js | 0 .../default/js/ckeditor/plugins/font/lang/fa.js | 0 .../default/js/ckeditor/plugins/font/lang/fi.js | 0 .../default/js/ckeditor/plugins/font/lang/fo.js | 0 .../default/js/ckeditor/plugins/font/lang/fr-ca.js | 0 .../default/js/ckeditor/plugins/font/lang/fr.js | 0 .../default/js/ckeditor/plugins/font/lang/gl.js | 0 .../default/js/ckeditor/plugins/font/lang/gu.js | 0 .../default/js/ckeditor/plugins/font/lang/he.js | 0 .../default/js/ckeditor/plugins/font/lang/hi.js | 0 .../default/js/ckeditor/plugins/font/lang/hr.js | 0 .../default/js/ckeditor/plugins/font/lang/hu.js | 0 .../default/js/ckeditor/plugins/font/lang/is.js | 0 .../default/js/ckeditor/plugins/font/lang/it.js | 0 .../default/js/ckeditor/plugins/font/lang/ja.js | 0 .../default/js/ckeditor/plugins/font/lang/ka.js | 0 .../default/js/ckeditor/plugins/font/lang/km.js | 0 .../default/js/ckeditor/plugins/font/lang/ko.js | 0 .../default/js/ckeditor/plugins/font/lang/ku.js | 0 .../default/js/ckeditor/plugins/font/lang/lt.js | 0 .../default/js/ckeditor/plugins/font/lang/lv.js | 0 .../default/js/ckeditor/plugins/font/lang/mk.js | 0 .../default/js/ckeditor/plugins/font/lang/mn.js | 0 .../default/js/ckeditor/plugins/font/lang/ms.js | 0 .../default/js/ckeditor/plugins/font/lang/nb.js | 0 .../default/js/ckeditor/plugins/font/lang/nl.js | 0 .../default/js/ckeditor/plugins/font/lang/no.js | 0 .../default/js/ckeditor/plugins/font/lang/pl.js | 0 .../default/js/ckeditor/plugins/font/lang/pt-br.js | 0 .../default/js/ckeditor/plugins/font/lang/pt.js | 0 .../default/js/ckeditor/plugins/font/lang/ro.js | 0 .../default/js/ckeditor/plugins/font/lang/ru.js | 0 .../default/js/ckeditor/plugins/font/lang/sk.js | 0 .../default/js/ckeditor/plugins/font/lang/sl.js | 0 .../js/ckeditor/plugins/font/lang/sr-latn.js | 0 .../default/js/ckeditor/plugins/font/lang/sr.js | 0 .../default/js/ckeditor/plugins/font/lang/sv.js | 0 .../default/js/ckeditor/plugins/font/lang/th.js | 0 .../default/js/ckeditor/plugins/font/lang/tr.js | 0 .../default/js/ckeditor/plugins/font/lang/ug.js | 0 .../default/js/ckeditor/plugins/font/lang/uk.js | 0 .../default/js/ckeditor/plugins/font/lang/vi.js | 0 .../default/js/ckeditor/plugins/font/lang/zh-cn.js | 0 .../default/js/ckeditor/plugins/font/lang/zh.js | 0 branding/default/js/ckeditor/plugins/font/plugin.js | 0 .../js/ckeditor/plugins/forms/dialogs/button.js | 0 .../js/ckeditor/plugins/forms/dialogs/checkbox.js | 0 .../js/ckeditor/plugins/forms/dialogs/form.js | 0 .../ckeditor/plugins/forms/dialogs/hiddenfield.js | 0 .../js/ckeditor/plugins/forms/dialogs/radio.js | 0 .../js/ckeditor/plugins/forms/dialogs/select.js | 0 .../js/ckeditor/plugins/forms/dialogs/textarea.js | 0 .../js/ckeditor/plugins/forms/dialogs/textfield.js | 0 .../ckeditor/plugins/forms/images/hiddenfield.gif | Bin branding/default/js/ckeditor/plugins/icons.png | Bin .../js/ckeditor/plugins/iframe/dialogs/iframe.js | 0 .../ckeditor/plugins/iframe/images/placeholder.png | Bin .../js/ckeditor/plugins/iframedialog/plugin.js | 0 .../js/ckeditor/plugins/image/dialogs/image.js | 0 .../js/ckeditor/plugins/image/images/noimage.png | Bin .../ckeditor/plugins/justify/icons/justifyblock.png | Bin .../plugins/justify/icons/justifycenter.png | Bin .../ckeditor/plugins/justify/icons/justifyleft.png | Bin .../ckeditor/plugins/justify/icons/justifyright.png | Bin .../default/js/ckeditor/plugins/justify/lang/af.js | 0 .../default/js/ckeditor/plugins/justify/lang/ar.js | 0 .../default/js/ckeditor/plugins/justify/lang/bg.js | 0 .../default/js/ckeditor/plugins/justify/lang/bn.js | 0 .../default/js/ckeditor/plugins/justify/lang/bs.js | 0 .../default/js/ckeditor/plugins/justify/lang/ca.js | 0 .../default/js/ckeditor/plugins/justify/lang/cs.js | 0 .../default/js/ckeditor/plugins/justify/lang/cy.js | 0 .../default/js/ckeditor/plugins/justify/lang/da.js | 0 .../default/js/ckeditor/plugins/justify/lang/de.js | 0 .../default/js/ckeditor/plugins/justify/lang/el.js | 0 .../js/ckeditor/plugins/justify/lang/en-au.js | 0 .../js/ckeditor/plugins/justify/lang/en-ca.js | 0 .../js/ckeditor/plugins/justify/lang/en-gb.js | 0 .../default/js/ckeditor/plugins/justify/lang/en.js | 0 .../default/js/ckeditor/plugins/justify/lang/eo.js | 0 .../default/js/ckeditor/plugins/justify/lang/es.js | 0 .../default/js/ckeditor/plugins/justify/lang/et.js | 0 .../default/js/ckeditor/plugins/justify/lang/eu.js | 0 .../default/js/ckeditor/plugins/justify/lang/fa.js | 0 .../default/js/ckeditor/plugins/justify/lang/fi.js | 0 .../default/js/ckeditor/plugins/justify/lang/fo.js | 0 .../js/ckeditor/plugins/justify/lang/fr-ca.js | 0 .../default/js/ckeditor/plugins/justify/lang/fr.js | 0 .../default/js/ckeditor/plugins/justify/lang/gl.js | 0 .../default/js/ckeditor/plugins/justify/lang/gu.js | 0 .../default/js/ckeditor/plugins/justify/lang/he.js | 0 .../default/js/ckeditor/plugins/justify/lang/hi.js | 0 .../default/js/ckeditor/plugins/justify/lang/hr.js | 0 .../default/js/ckeditor/plugins/justify/lang/hu.js | 0 .../default/js/ckeditor/plugins/justify/lang/is.js | 0 .../default/js/ckeditor/plugins/justify/lang/it.js | 0 .../default/js/ckeditor/plugins/justify/lang/ja.js | 0 .../default/js/ckeditor/plugins/justify/lang/ka.js | 0 .../default/js/ckeditor/plugins/justify/lang/km.js | 0 .../default/js/ckeditor/plugins/justify/lang/ko.js | 0 .../default/js/ckeditor/plugins/justify/lang/ku.js | 0 .../default/js/ckeditor/plugins/justify/lang/lt.js | 0 .../default/js/ckeditor/plugins/justify/lang/lv.js | 0 .../default/js/ckeditor/plugins/justify/lang/mk.js | 0 .../default/js/ckeditor/plugins/justify/lang/mn.js | 0 .../default/js/ckeditor/plugins/justify/lang/ms.js | 0 .../default/js/ckeditor/plugins/justify/lang/nb.js | 0 .../default/js/ckeditor/plugins/justify/lang/nl.js | 0 .../default/js/ckeditor/plugins/justify/lang/no.js | 0 .../default/js/ckeditor/plugins/justify/lang/pl.js | 0 .../js/ckeditor/plugins/justify/lang/pt-br.js | 0 .../default/js/ckeditor/plugins/justify/lang/pt.js | 0 .../default/js/ckeditor/plugins/justify/lang/ro.js | 0 .../default/js/ckeditor/plugins/justify/lang/ru.js | 0 .../default/js/ckeditor/plugins/justify/lang/sk.js | 0 .../default/js/ckeditor/plugins/justify/lang/sl.js | 0 .../js/ckeditor/plugins/justify/lang/sr-latn.js | 0 .../default/js/ckeditor/plugins/justify/lang/sr.js | 0 .../default/js/ckeditor/plugins/justify/lang/sv.js | 0 .../default/js/ckeditor/plugins/justify/lang/th.js | 0 .../default/js/ckeditor/plugins/justify/lang/tr.js | 0 .../default/js/ckeditor/plugins/justify/lang/ug.js | 0 .../default/js/ckeditor/plugins/justify/lang/uk.js | 0 .../default/js/ckeditor/plugins/justify/lang/vi.js | 0 .../js/ckeditor/plugins/justify/lang/zh-cn.js | 0 .../default/js/ckeditor/plugins/justify/lang/zh.js | 0 .../default/js/ckeditor/plugins/justify/plugin.js | 0 .../js/ckeditor/plugins/link/dialogs/anchor.js | 0 .../js/ckeditor/plugins/link/dialogs/link.js | 0 .../js/ckeditor/plugins/link/images/anchor.gif | Bin .../js/ckeditor/plugins/link/images/anchor.png | Bin .../ckeditor/plugins/liststyle/dialogs/liststyle.js | 0 .../js/ckeditor/plugins/magicline/images/icon.png | Bin .../js/ckeditor/plugins/menubutton/plugin.js | 0 .../ckeditor/plugins/pagebreak/images/pagebreak.gif | Bin .../js/ckeditor/plugins/panelbutton/plugin.js | 0 .../plugins/pastefromword/filter/default.js | 0 .../ckeditor/plugins/pastetext/dialogs/pastetext.js | 0 .../plugins/placeholder/dialogs/placeholder.js | 0 .../js/ckeditor/plugins/placeholder/lang/en.js | 0 .../js/ckeditor/plugins/placeholder/lang/he.js | 0 .../js/ckeditor/plugins/placeholder/placeholder.gif | Bin .../js/ckeditor/plugins/placeholder/plugin.js | 0 .../default/js/ckeditor/plugins/scayt/LICENSE.md | 0 .../default/js/ckeditor/plugins/scayt/README.md | 0 .../js/ckeditor/plugins/scayt/dialogs/options.js | 0 .../js/ckeditor/plugins/scayt/dialogs/toolbar.css | 0 .../js/ckeditor/plugins/scayt/icons/scayt.png | Bin .../default/js/ckeditor/plugins/scayt/lang/af.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ar.js | 0 .../default/js/ckeditor/plugins/scayt/lang/bg.js | 0 .../default/js/ckeditor/plugins/scayt/lang/bn.js | 0 .../default/js/ckeditor/plugins/scayt/lang/bs.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ca.js | 0 .../default/js/ckeditor/plugins/scayt/lang/cs.js | 0 .../default/js/ckeditor/plugins/scayt/lang/cy.js | 0 .../default/js/ckeditor/plugins/scayt/lang/da.js | 0 .../default/js/ckeditor/plugins/scayt/lang/de.js | 0 .../default/js/ckeditor/plugins/scayt/lang/el.js | 0 .../default/js/ckeditor/plugins/scayt/lang/en-au.js | 0 .../default/js/ckeditor/plugins/scayt/lang/en-ca.js | 0 .../default/js/ckeditor/plugins/scayt/lang/en-gb.js | 0 .../default/js/ckeditor/plugins/scayt/lang/en.js | 0 .../default/js/ckeditor/plugins/scayt/lang/eo.js | 0 .../default/js/ckeditor/plugins/scayt/lang/es.js | 0 .../default/js/ckeditor/plugins/scayt/lang/et.js | 0 .../default/js/ckeditor/plugins/scayt/lang/eu.js | 0 .../default/js/ckeditor/plugins/scayt/lang/fa.js | 0 .../default/js/ckeditor/plugins/scayt/lang/fi.js | 0 .../default/js/ckeditor/plugins/scayt/lang/fo.js | 0 .../default/js/ckeditor/plugins/scayt/lang/fr-ca.js | 0 .../default/js/ckeditor/plugins/scayt/lang/fr.js | 0 .../default/js/ckeditor/plugins/scayt/lang/gl.js | 0 .../default/js/ckeditor/plugins/scayt/lang/gu.js | 0 .../default/js/ckeditor/plugins/scayt/lang/he.js | 0 .../default/js/ckeditor/plugins/scayt/lang/hi.js | 0 .../default/js/ckeditor/plugins/scayt/lang/hr.js | 0 .../default/js/ckeditor/plugins/scayt/lang/hu.js | 0 .../default/js/ckeditor/plugins/scayt/lang/is.js | 0 .../default/js/ckeditor/plugins/scayt/lang/it.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ja.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ka.js | 0 .../default/js/ckeditor/plugins/scayt/lang/km.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ko.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ku.js | 0 .../default/js/ckeditor/plugins/scayt/lang/lt.js | 0 .../default/js/ckeditor/plugins/scayt/lang/lv.js | 0 .../default/js/ckeditor/plugins/scayt/lang/mk.js | 0 .../default/js/ckeditor/plugins/scayt/lang/mn.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ms.js | 0 .../default/js/ckeditor/plugins/scayt/lang/nb.js | 0 .../default/js/ckeditor/plugins/scayt/lang/nl.js | 0 .../default/js/ckeditor/plugins/scayt/lang/no.js | 0 .../default/js/ckeditor/plugins/scayt/lang/pl.js | 0 .../default/js/ckeditor/plugins/scayt/lang/pt-br.js | 0 .../default/js/ckeditor/plugins/scayt/lang/pt.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ro.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ru.js | 0 .../default/js/ckeditor/plugins/scayt/lang/sk.js | 0 .../default/js/ckeditor/plugins/scayt/lang/sl.js | 0 .../js/ckeditor/plugins/scayt/lang/sr-latn.js | 0 .../default/js/ckeditor/plugins/scayt/lang/sr.js | 0 .../default/js/ckeditor/plugins/scayt/lang/sv.js | 0 .../default/js/ckeditor/plugins/scayt/lang/th.js | 0 .../default/js/ckeditor/plugins/scayt/lang/tr.js | 0 .../default/js/ckeditor/plugins/scayt/lang/ug.js | 0 .../default/js/ckeditor/plugins/scayt/lang/uk.js | 0 .../default/js/ckeditor/plugins/scayt/lang/vi.js | 0 .../default/js/ckeditor/plugins/scayt/lang/zh-cn.js | 0 .../default/js/ckeditor/plugins/scayt/lang/zh.js | 0 .../default/js/ckeditor/plugins/scayt/plugin.js | 0 .../plugins/showblocks/images/block_address.png | Bin .../plugins/showblocks/images/block_blockquote.png | Bin .../plugins/showblocks/images/block_div.png | Bin .../ckeditor/plugins/showblocks/images/block_h1.png | Bin .../ckeditor/plugins/showblocks/images/block_h2.png | Bin .../ckeditor/plugins/showblocks/images/block_h3.png | Bin .../ckeditor/plugins/showblocks/images/block_h4.png | Bin .../ckeditor/plugins/showblocks/images/block_h5.png | Bin .../ckeditor/plugins/showblocks/images/block_h6.png | Bin .../ckeditor/plugins/showblocks/images/block_p.png | Bin .../plugins/showblocks/images/block_pre.png | Bin .../js/ckeditor/plugins/smiley/dialogs/smiley.js | 0 .../ckeditor/plugins/smiley/images/angel_smile.gif | Bin .../ckeditor/plugins/smiley/images/angry_smile.gif | Bin .../ckeditor/plugins/smiley/images/broken_heart.gif | Bin .../plugins/smiley/images/confused_smile.gif | Bin .../js/ckeditor/plugins/smiley/images/cry_smile.gif | Bin .../ckeditor/plugins/smiley/images/devil_smile.gif | Bin .../plugins/smiley/images/embaressed_smile.gif | Bin .../js/ckeditor/plugins/smiley/images/envelope.gif | Bin .../js/ckeditor/plugins/smiley/images/heart.gif | Bin .../js/ckeditor/plugins/smiley/images/kiss.gif | Bin .../js/ckeditor/plugins/smiley/images/lightbulb.gif | Bin .../js/ckeditor/plugins/smiley/images/omg_smile.gif | Bin .../plugins/smiley/images/regular_smile.gif | Bin .../js/ckeditor/plugins/smiley/images/sad_smile.gif | Bin .../ckeditor/plugins/smiley/images/shades_smile.gif | Bin .../ckeditor/plugins/smiley/images/teeth_smile.gif | Bin .../ckeditor/plugins/smiley/images/thumbs_down.gif | Bin .../js/ckeditor/plugins/smiley/images/thumbs_up.gif | Bin .../ckeditor/plugins/smiley/images/tounge_smile.gif | Bin .../smiley/images/whatchutalkingabout_smile.gif | Bin .../ckeditor/plugins/smiley/images/wink_smile.gif | Bin .../specialchar/dialogs/lang/_translationstatus.txt | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ca.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/cs.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/cy.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/de.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/el.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/en.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/eo.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/et.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/fa.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/fi.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/fr.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/he.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/hr.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/it.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ku.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/lv.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/nb.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/nl.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/no.js | 0 .../plugins/specialchar/dialogs/lang/pt-br.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/sk.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/tr.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ug.js | 0 .../plugins/specialchar/dialogs/lang/zh-cn.js | 0 .../plugins/specialchar/dialogs/specialchar.js | 0 .../js/ckeditor/plugins/specialchar/lang/en.js | 0 .../js/ckeditor/plugins/styles/styles/default.js | 0 .../js/ckeditor/plugins/stylesheetparser/plugin.js | 0 .../js/ckeditor/plugins/table/dialogs/table.js | 0 .../js/ckeditor/plugins/tableresize/plugin.js | 0 .../plugins/tabletools/dialogs/tableCell.js | 0 .../ckeditor/plugins/templates/dialogs/templates.js | 0 .../ckeditor/plugins/templates/templates/default.js | 0 .../templates/templates/images/template1.gif | Bin .../templates/templates/images/template2.gif | Bin .../templates/templates/images/template3.gif | Bin .../js/ckeditor/plugins/uicolor/dialogs/uicolor.js | 0 .../default/js/ckeditor/plugins/uicolor/lang/en.js | 0 .../default/js/ckeditor/plugins/uicolor/lang/he.js | 0 .../default/js/ckeditor/plugins/uicolor/plugin.js | 0 .../default/js/ckeditor/plugins/uicolor/uicolor.gif | Bin .../ckeditor/plugins/uicolor/yui/assets/hue_bg.png | Bin .../plugins/uicolor/yui/assets/hue_thumb.png | Bin .../plugins/uicolor/yui/assets/picker_mask.png | Bin .../plugins/uicolor/yui/assets/picker_thumb.png | Bin .../js/ckeditor/plugins/uicolor/yui/assets/yui.css | 0 .../default/js/ckeditor/plugins/uicolor/yui/yui.js | 0 .../js/ckeditor/plugins/wsc/dialogs/ciframe.html | 0 .../ckeditor/plugins/wsc/dialogs/tmpFrameset.html | 0 .../default/js/ckeditor/plugins/wsc/dialogs/wsc.css | 0 .../default/js/ckeditor/plugins/wsc/dialogs/wsc.js | 0 branding/default/js/ckeditor/plugins/xml/plugin.js | 0 branding/default/js/ckeditor/samples/ajax.html | 0 branding/default/js/ckeditor/samples/api.html | 0 branding/default/js/ckeditor/samples/appendto.html | 0 .../js/ckeditor/samples/assets/inlineall/logo.png | Bin .../samples/assets/outputxhtml/outputxhtml.css | 0 .../js/ckeditor/samples/assets/posteddata.php | 0 .../default/js/ckeditor/samples/assets/sample.css | 0 .../default/js/ckeditor/samples/assets/sample.jpg | Bin .../samples/assets/uilanguages/languages.js | 0 .../default/js/ckeditor/samples/divreplace.html | 0 branding/default/js/ckeditor/samples/index.html | 0 branding/default/js/ckeditor/samples/inlineall.html | 0 .../default/js/ckeditor/samples/inlinebycode.html | 0 .../samples/plugins/dialog/assets/my_dialog.js | 0 .../js/ckeditor/samples/plugins/dialog/dialog.html | 0 .../ckeditor/samples/plugins/enterkey/enterkey.html | 0 .../assets/outputforflash/outputforflash.fla | Bin .../assets/outputforflash/outputforflash.swf | Bin .../htmlwriter/assets/outputforflash/swfobject.js | 0 .../samples/plugins/htmlwriter/outputforflash.html | 0 .../samples/plugins/htmlwriter/outputhtml.html | 0 .../samples/plugins/magicline/magicline.html | 0 .../ckeditor/samples/plugins/toolbar/toolbar.html | 0 .../samples/plugins/wysiwygarea/fullpage.html | 0 branding/default/js/ckeditor/samples/readonly.html | 0 .../default/js/ckeditor/samples/replacebyclass.html | 0 .../default/js/ckeditor/samples/replacebycode.html | 0 branding/default/js/ckeditor/samples/sample.css | 0 branding/default/js/ckeditor/samples/sample.js | 0 .../js/ckeditor/samples/sample_posteddata.php | 0 branding/default/js/ckeditor/samples/tabindex.html | 0 branding/default/js/ckeditor/samples/uicolor.html | 0 .../default/js/ckeditor/samples/uilanguages.html | 0 .../default/js/ckeditor/samples/xhtmlstyle.html | 0 branding/default/js/ckeditor/skins/kama/dialog.css | 0 branding/default/js/ckeditor/skins/kama/editor.css | 0 branding/default/js/ckeditor/skins/kama/icons.png | Bin .../default/js/ckeditor/skins/kama/icons_rtl.png | Bin .../js/ckeditor/skins/kama/images/dialog_sides.gif | Bin .../js/ckeditor/skins/kama/images/dialog_sides.png | Bin .../ckeditor/skins/kama/images/dialog_sides_rtl.png | Bin .../default/js/ckeditor/skins/kama/images/mini.gif | Bin .../js/ckeditor/skins/kama/images/noimage.png | Bin .../js/ckeditor/skins/kama/images/sprites.png | Bin .../js/ckeditor/skins/kama/images/sprites_ie6.png | Bin .../js/ckeditor/skins/kama/images/toolbar_start.gif | Bin branding/default/js/ckeditor/skins/kama/skin.js | 0 .../default/js/ckeditor/skins/kama/templates.css | 0 branding/default/js/ckeditor/skins/moono/dialog.css | 0 .../default/js/ckeditor/skins/moono/dialog_ie.css | 0 .../default/js/ckeditor/skins/moono/dialog_ie7.css | 0 .../default/js/ckeditor/skins/moono/dialog_ie8.css | 0 .../js/ckeditor/skins/moono/dialog_opera.css | 0 branding/default/js/ckeditor/skins/moono/editor.css | 0 .../js/ckeditor/skins/moono/editor_gecko.css | 0 .../default/js/ckeditor/skins/moono/editor_ie.css | 0 .../default/js/ckeditor/skins/moono/editor_ie7.css | 0 .../default/js/ckeditor/skins/moono/editor_ie8.css | 0 branding/default/js/ckeditor/skins/moono/icons.png | Bin .../js/ckeditor/skins/moono/images/arrow.png | Bin .../js/ckeditor/skins/moono/images/close.png | Bin .../default/js/ckeditor/skins/moono/images/mini.png | Bin branding/default/js/ckeditor/skins/moono/readme.md | 0 .../default/js/ckeditor/skins/office2003/dialog.css | 0 .../default/js/ckeditor/skins/office2003/editor.css | 0 .../default/js/ckeditor/skins/office2003/icons.png | Bin .../js/ckeditor/skins/office2003/icons_rtl.png | Bin .../skins/office2003/images/dialog_sides.gif | Bin .../skins/office2003/images/dialog_sides.png | Bin .../skins/office2003/images/dialog_sides_rtl.png | Bin .../js/ckeditor/skins/office2003/images/mini.gif | Bin .../js/ckeditor/skins/office2003/images/noimage.png | Bin .../js/ckeditor/skins/office2003/images/sprites.png | Bin .../skins/office2003/images/sprites_ie6.png | Bin .../default/js/ckeditor/skins/office2003/skin.js | 0 .../js/ckeditor/skins/office2003/templates.css | 0 branding/default/js/ckeditor/skins/v2/dialog.css | 0 branding/default/js/ckeditor/skins/v2/editor.css | 0 branding/default/js/ckeditor/skins/v2/icons.png | Bin branding/default/js/ckeditor/skins/v2/icons_rtl.png | Bin .../js/ckeditor/skins/v2/images/dialog_sides.gif | Bin .../js/ckeditor/skins/v2/images/dialog_sides.png | Bin .../ckeditor/skins/v2/images/dialog_sides_rtl.png | Bin .../default/js/ckeditor/skins/v2/images/mini.gif | Bin .../default/js/ckeditor/skins/v2/images/noimage.png | Bin .../default/js/ckeditor/skins/v2/images/sprites.png | Bin .../js/ckeditor/skins/v2/images/sprites_ie6.png | Bin .../js/ckeditor/skins/v2/images/toolbar_start.gif | Bin branding/default/js/ckeditor/skins/v2/skin.js | 0 branding/default/js/ckeditor/skins/v2/templates.css | 0 .../default/js/ckeditor/themes/default/theme.js | 0 1627 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/adapters/jquery.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/_bootstrap.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/ckeditor.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/ckeditor_base.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/ckeditor_basic.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/command.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/commanddefinition.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/config.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dataprocessor.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/comment.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/document.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/documentfragment.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/domobject.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/element.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/elementpath.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/event.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/node.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/nodelist.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/range.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/rangelist.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/text.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/walker.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dom/window.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/dtd.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/editor.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/editor_basic.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/env.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/event.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/eventInfo.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/focusmanager.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser/basicwriter.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser/cdata.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser/comment.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser/element.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser/filter.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser/fragment.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/htmlparser/text.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/lang.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/loader.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/plugindefinition.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/plugins.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/resourcemanager.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/scriptloader.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/skins.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/themes.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/tools.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/core/ui.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/_languages.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/_translationstatus.txt mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/af.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ar.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/bg.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/bn.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/bs.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/da.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/en-au.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/en-ca.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/en-gb.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/es.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/eu.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/fo.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/fr-ca.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/gl.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/gu.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/hi.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/hu.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/is.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ja.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ka.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/km.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ko.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/lt.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/mn.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ms.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/pl.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/pt.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ro.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/ru.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/sl.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/sr-latn.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/sr.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/sv.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/th.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/uk.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/vi.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/lang/zh.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/dialogs/a11yhelp.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/a11yhelp/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/about/dialogs/about.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/about/dialogs/logo_ckeditor.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/about/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/adobeair/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/ajax/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/autogrow/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/basicstyles/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/bbcode/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/bidi/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/blockquote/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/button/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/clipboard/dialogs/paste.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/clipboard/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/colorbutton/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/colordialog/dialogs/colordialog.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/colordialog/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/contextmenu/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/devtools/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/devtools/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/dialog/dialogDefinition.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/dialog/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/dialogadvtab/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/dialogui/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/div/dialogs/div.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/div/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/docprops/dialogs/docprops.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/docprops/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/domiterator/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/editingblock/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/elementspath/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/enterkey/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/entities/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/fakeobjects/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/filebrowser/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/find/dialogs/find.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/find/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/flash/dialogs/flash.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/flash/images/placeholder.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/flash/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/floatpanel/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/font/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/format/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/button.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/checkbox.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/form.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/hiddenfield.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/radio.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/select.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textarea.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textfield.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/images/hiddenfield.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/forms/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/horizontalrule/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/htmldataprocessor/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/htmlwriter/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/iframe/dialogs/iframe.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/iframe/images/placeholder.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/iframe/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/iframedialog/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/image/dialogs/image.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/image/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/indent/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/justify/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/keystrokes/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/link/dialogs/anchor.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/link/dialogs/link.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/link/images/anchor.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/link/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/list/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/listblock/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/liststyle/dialogs/liststyle.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/liststyle/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/maximize/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/menu/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/menubutton/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/newpage/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/pagebreak/images/pagebreak.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/pagebreak/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/panel/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/panelbutton/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/pastefromword/filter/default.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/pastefromword/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/pastetext/dialogs/pastetext.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/pastetext/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/placeholder/dialogs/placeholder.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/placeholder/placeholder.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/placeholder/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/popup/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/preview/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/print/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/removeformat/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/resize/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/richcombo/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/save/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/options.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/toolbar.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/scayt/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/selection/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_address.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_blockquote.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_div.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h1.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h2.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h3.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h4.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h5.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_p.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_pre.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showblocks/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/showborders/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/dialogs/smiley.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/angel_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/angry_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/broken_heart.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/confused_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/cry_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/devil_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/embaressed_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/envelope.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/heart.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/kiss.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/lightbulb.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/omg_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/regular_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/sad_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/shades_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/teeth_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_down.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_up.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/tounge_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/whatchutalkingabout_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/images/wink_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/smiley/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/sourcearea/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/specialchar/dialogs/specialchar.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/specialchar/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/specialchar/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/styles/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/styles/styles/default.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/stylescombo/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/stylesheetparser/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/tab/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/table/dialogs/table.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/table/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/tableresize/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/tabletools/dialogs/tableCell.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/tabletools/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/templates/dialogs/templates.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/templates/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/templates/templates/default.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template1.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template2.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template3.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/toolbar/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/dialogs/uicolor.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/uicolor.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_bg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_thumb.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_mask.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_thumb.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/yui.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/yui.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/undo/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/ciframe.html mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/tmpFrameset.html mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/wsc/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/wysiwygarea/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/plugins/xml/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/editor.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/elementspath.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/icons.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/icons.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/images/toolbar_start.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/mainui.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/menu.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/panel.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/presets.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/reset.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/richcombo.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/skin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/templates.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/kama/toolbar.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/editor.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/elementspath.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/icons.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/icons.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/mainui.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/menu.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/panel.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/presets.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/reset.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/richcombo.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/skin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/templates.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/office2003/toolbar.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/editor.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/elementspath.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/icons.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/icons.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/images/toolbar_start.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/mainui.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/menu.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/panel.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/presets.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/reset.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/richcombo.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/skin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/templates.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/skins/v2/toolbar.css mode change 100755 => 100644 branding/default/js/ckeditor.old/_source/themes/default/theme.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/core/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/core/autoload.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/core/browser.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/core/types/type_img.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/core/types/type_mime.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/core/uploader.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/css/index.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/doc/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/doc/Changelog mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/doc/INSTALL mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.GPL mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.LGPL mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/doc/README mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/0bject.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/clipboard.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/files.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/folders.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/index.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/init.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/misc.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/settings.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/browser/toolbar.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/helper.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/jquery.drag.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/jquery.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/js/jquery.rightClick.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/bg.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/cs.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/de.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/en.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/es.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/fr.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/hu.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/it.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/pl.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/pt.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lang/ru.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/class_input.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/class_zipFolder.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/helper_dir.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/helper_file.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/helper_httpCache.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/helper_path.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/lib/helper_text.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/about.txt mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/..png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/.image.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/avi.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bat.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bmp.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bz2.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ccd.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cgi.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/com.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/csh.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cue.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/deb.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/dll.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/doc.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/docx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/exe.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fla.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/flv.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fon.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gif.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gz.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/htm.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/html.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ini.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/iso.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jar.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/java.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpeg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/js.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mds.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mdx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mid.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/midi.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mkv.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mov.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mp3.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpeg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nfo.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nrg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ogg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pdf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/php.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/phps.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pm.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/png.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ppt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pptx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/qt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rpm.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rtf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sh.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/srt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sub.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/swf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tgz.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tif.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tiff.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/torrent.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ttf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/txt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wav.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wma.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xls.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xlsx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/zip.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/..png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/.image.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/avi.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bat.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bmp.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bz2.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ccd.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cgi.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/com.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/csh.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cue.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/deb.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/dll.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/doc.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/docx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/exe.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fla.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/flv.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fon.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gif.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gz.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/htm.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/html.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ini.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/iso.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jar.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/java.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpeg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/js.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mds.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mdx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mid.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/midi.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mkv.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mov.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mp3.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpeg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nfo.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nrg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ogg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pdf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/php.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/phps.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pm.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/png.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ppt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pptx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/qt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rpm.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rtf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sh.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/srt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sub.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/swf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tgz.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tif.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tiff.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/torrent.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ttf.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/txt.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wav.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wma.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xls.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xlsx.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/zip.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/about.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-add.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-clear.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/copy.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/delete.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/download.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/folder-new.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/maximize.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/move.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/refresh.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/rename.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/select.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/settings.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/upload.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/view.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/loading.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/denied.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder_current.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/minus.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/plus.png mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/init.js mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/themes/oxygen/style.css mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl__css.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl__javascript.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_browser.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_chDir.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_deleteDir.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_error.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_expand.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_init.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/tpl/tpl_renameDir.php mode change 100755 => 100644 branding/default/js/ckeditor.old/kcfinder/upload/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/MediaEmbed/dialogs/mediaembed.html mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/MediaEmbed/images/icon.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/MediaEmbed/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/a11yhelp/dialogs/a11yhelp.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/a11yhelp/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/a11yhelp/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/about/dialogs/about.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/about/dialogs/logo_ckeditor.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/adobeair/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/ajax/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/autogrow/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/bbcode/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/clipboard/dialogs/paste.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/colordialog/dialogs/colordialog.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/devtools/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/devtools/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/dialog/dialogDefinition.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/div/dialogs/div.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/docprops/dialogs/docprops.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/docprops/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/fakeobjects/images/spacer.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/find/dialogs/find.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/flash/dialogs/flash.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/flash/images/placeholder.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/button.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/checkbox.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/form.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/hiddenfield.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/radio.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/select.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/textarea.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/dialogs/textfield.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/forms/images/hiddenfield.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/iframe/dialogs/iframe.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/iframe/images/placeholder.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/iframedialog/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/image/dialogs/image.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/link/dialogs/anchor.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/link/dialogs/link.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/link/images/anchor.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/link/images/anchor.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/liststyle/dialogs/liststyle.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/pagebreak/images/pagebreak.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/pastefromword/filter/default.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/pastetext/dialogs/pastetext.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/placeholder/dialogs/placeholder.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/placeholder/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/placeholder/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/placeholder/placeholder.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/placeholder/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/scayt/dialogs/options.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/scayt/dialogs/toolbar.css mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_address.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_blockquote.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_div.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h1.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h2.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h3.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h4.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h5.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_h6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_p.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/showblocks/images/block_pre.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/dialogs/smiley.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/angel_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/angry_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/broken_heart.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/confused_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/cry_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/devil_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/embaressed_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/envelope.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/heart.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/kiss.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/lightbulb.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/omg_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/regular_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/sad_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/shades_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/teeth_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_down.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_up.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/tounge_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/whatchutalkingabout_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/smiley/images/wink_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/specialchar/dialogs/specialchar.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/specialchar/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/styles/styles/default.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/stylesheetparser/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/table/dialogs/table.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/tableresize/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/tabletools/dialogs/tableCell.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/templates/dialogs/templates.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/templates/templates/default.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/templates/templates/images/template1.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/templates/templates/images/template2.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/templates/templates/images/template3.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/dialogs/uicolor.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/uicolor.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_bg.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_thumb.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_mask.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_thumb.png mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/yui.css mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/uicolor/yui/yui.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/wsc/dialogs/ciframe.html mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/wsc/dialogs/tmpFrameset.html mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.css mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.js mode change 100755 => 100644 branding/default/js/ckeditor.old/plugins/xml/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/assets/inlineall/logo.png mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/assets/outputxhtml/outputxhtml.css mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/assets/posteddata.php mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/assets/sample.css mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/assets/sample.jpg mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/assets/uilanguages/languages.js mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/plugins/dialog/assets/my_dialog.js mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/plugins/dialog/dialog.html mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/plugins/enterkey/enterkey.html mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/plugins/toolbar/toolbar.html mode change 100755 => 100644 branding/default/js/ckeditor.old/samples/plugins/wysiwygarea/fullpage.html mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/editor.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/icons.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/images/toolbar_start.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/skin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/kama/templates.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/dialog_ie.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/dialog_ie7.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/dialog_ie8.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/dialog_iequirks.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/dialog_opera.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/editor.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/editor_gecko.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/editor_ie.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/editor_ie7.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/editor_ie8.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/editor_iequirks.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/icons.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/images/arrow.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/images/close.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/images/mini.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/moono/readme.md mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/editor.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/icons.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/skin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/office2003/templates.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/editor.css mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/icons.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/images/toolbar_start.gif mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/skin.js mode change 100755 => 100644 branding/default/js/ckeditor.old/skins/v2/templates.css mode change 100755 => 100644 branding/default/js/ckeditor.old/themes/default/theme.js mode change 100755 => 100644 branding/default/js/ckeditor/adapters/jquery.js mode change 100755 => 100644 branding/default/js/ckeditor/images/spacer.gif mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/browse.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/config.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/core/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/core/autoload.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/core/browser.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/core/types/type_img.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/core/types/type_mime.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/core/uploader.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/css/index.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/doc/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/doc/Changelog mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/doc/INSTALL mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/doc/LICENSE.GPL mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/doc/LICENSE.LGPL mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/doc/README mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/0bject.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/clipboard.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/files.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/folders.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/index.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/init.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/misc.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/settings.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/browser/toolbar.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/helper.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/jquery.drag.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/jquery.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js/jquery.rightClick.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/js_localize.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/bg.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/cs.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/de.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/en.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/es.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/fr.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/hu.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/it.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/pl.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/pt.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lang/ru.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/class_gd.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/class_input.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/class_zipFolder.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/helper_dir.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/helper_file.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/helper_httpCache.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/helper_path.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/lib/helper_text.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/about.txt mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/..png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/.image.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/avi.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bat.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bmp.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bz2.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ccd.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/cgi.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/com.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/csh.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/cue.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/deb.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/dll.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/doc.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/docx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/exe.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/fla.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/flv.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/fon.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/gif.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/gz.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/htm.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/html.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ini.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/iso.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jar.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/java.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jpeg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jpg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/js.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mds.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mdx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mid.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/midi.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mkv.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mov.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mp3.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mpeg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mpg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/nfo.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/nrg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ogg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pdf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/php.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/phps.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pl.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pm.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/png.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ppt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pptx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/qt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/rpm.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/rtf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/sh.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/srt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/sub.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/swf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tgz.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tif.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tiff.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/torrent.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ttf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/txt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/wav.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/wma.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/xls.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/xlsx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/zip.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/..png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/.image.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/avi.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bat.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bmp.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bz2.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ccd.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/cgi.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/com.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/csh.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/cue.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/deb.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/dll.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/doc.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/docx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/exe.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/fla.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/flv.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/fon.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/gif.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/gz.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/htm.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/html.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ini.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/iso.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jar.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/java.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jpeg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jpg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/js.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mds.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mdx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mid.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/midi.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mkv.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mov.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mp3.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mpeg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mpg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/nfo.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/nrg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ogg.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pdf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/php.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/phps.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pl.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pm.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/png.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ppt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pptx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/qt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/rpm.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/rtf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/sh.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/srt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/sub.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/swf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tgz.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tif.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tiff.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/torrent.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ttf.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/txt.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/wav.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/wma.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/xls.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/xlsx.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/zip.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/about.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard-add.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard-clear.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/copy.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/delete.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/download.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/folder-new.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/maximize.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/move.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/refresh.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/rename.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/select.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/settings.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/upload.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/view.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/loading.gif mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/denied.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/folder.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/folder_current.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/minus.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/plus.png mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/init.js mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/themes/oxygen/style.css mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl__css.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl__javascript.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl_browser.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl_chDir.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl_deleteDir.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl_error.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl_expand.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl_init.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/tpl/tpl_renameDir.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/upload.php mode change 100755 => 100644 branding/default/js/ckeditor/kcfinder/upload/.htaccess mode change 100755 => 100644 branding/default/js/ckeditor/lang/_languages.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/_translationstatus.txt mode change 100755 => 100644 branding/default/js/ckeditor/lang/af.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ar.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/bg.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/bn.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/bs.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/da.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/en-au.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/en-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/en-gb.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/es.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/eu.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/fo.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/fr-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/gl.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/gu.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/hi.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/hu.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/is.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ja.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ka.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/km.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ko.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/lt.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/mn.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ms.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/pl.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/pt.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ro.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/ru.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/sl.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/sr-latn.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/sr.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/sv.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/th.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/uk.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/vi.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor/lang/zh.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/MediaEmbed/dialogs/mediaembed.html mode change 100755 => 100644 branding/default/js/ckeditor/plugins/MediaEmbed/images/icon.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/MediaEmbed/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/a11yhelp/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/about/dialogs/about.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/adobeair/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/ajax/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/autogrow/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/bbcode/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/clipboard/dialogs/paste.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/css/codemirror.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/codemirror.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/css.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/htmlmixed.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/javascript.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/closetag.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/colorize.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/continuecomment.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/continuelist.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/foldcode.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/formatting.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/javascript-hint.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/loadmode.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/match-highlighter.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/matchbrackets.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/multiplex.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/overlay.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/pig-hint.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/runmode-standalone.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/runmode.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/search.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/searchcursor.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/util/xml-hint.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/js/xml.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/ambiance-mobile.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/ambiance.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/blackboard.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/cobalt.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/eclipse.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/elegant.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/erlang-dark.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/lesser-dark.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/monokai.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/neat.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/night.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/rubyblue.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/solarized.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/twilight.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/vibrant-ink.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/codemirror/theme/xq-dark.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/icons/bgcolor.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/icons/textcolor.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/af.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ar.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/bg.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/bn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/bs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/da.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/en-au.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/en-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/en-gb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/es.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/eu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/fo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/fr-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/gl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/gu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/hi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/hu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/is.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ja.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ka.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/km.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ko.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ku.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/lt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/mk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/mn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ms.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/pl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/pt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ro.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ru.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/sl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/sr-latn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/sr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/sv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/th.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/ug.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/uk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/vi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/lang/zh.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colorbutton/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/colordialog/dialogs/colordialog.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/devtools/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/devtools/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/dialog/dialogDefinition.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/div/dialogs/div.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/docprops/dialogs/docprops.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/docprops/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/fakeobjects/images/spacer.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/find/dialogs/find.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/flash/dialogs/flash.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/flash/images/placeholder.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/af.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ar.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/bg.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/bn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/bs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/da.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/en-au.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/en-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/en-gb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/es.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/eu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/fo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/fr-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/gl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/gu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/hi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/hu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/is.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ja.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ka.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/km.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ko.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ku.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/lt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/mk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/mn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ms.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/pl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/pt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ro.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ru.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/sl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/sr-latn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/sr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/sv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/th.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/ug.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/uk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/vi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/lang/zh.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/font/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/button.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/checkbox.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/form.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/hiddenfield.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/radio.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/select.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/textarea.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/dialogs/textfield.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/forms/images/hiddenfield.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/icons.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/iframe/dialogs/iframe.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/iframe/images/placeholder.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/iframedialog/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/image/dialogs/image.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/image/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/icons/justifyblock.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/icons/justifycenter.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/icons/justifyleft.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/icons/justifyright.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/af.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ar.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/bg.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/bn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/bs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/da.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/en-au.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/en-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/en-gb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/es.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/eu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/fo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/fr-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/gl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/gu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/hi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/hu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/is.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ja.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ka.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/km.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ko.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ku.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/lt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/mk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/mn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ms.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/pl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/pt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ro.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ru.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/sl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/sr-latn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/sr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/sv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/th.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/ug.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/uk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/vi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/lang/zh.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/justify/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/link/dialogs/anchor.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/link/dialogs/link.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/link/images/anchor.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/link/images/anchor.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/liststyle/dialogs/liststyle.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/magicline/images/icon.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/menubutton/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/pagebreak/images/pagebreak.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/panelbutton/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/pastefromword/filter/default.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/pastetext/dialogs/pastetext.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/placeholder/dialogs/placeholder.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/placeholder/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/placeholder/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/placeholder/placeholder.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/placeholder/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/LICENSE.md mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/README.md mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/dialogs/options.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/dialogs/toolbar.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/icons/scayt.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/af.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ar.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/bg.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/bn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/bs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/da.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/en-au.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/en-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/en-gb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/es.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/eu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/fo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/fr-ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/gl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/gu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/hi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/hu.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/is.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ja.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ka.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/km.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ko.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ku.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/lt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/mk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/mn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ms.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/pl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/pt.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ro.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ru.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/sl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/sr-latn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/sr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/sv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/th.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/ug.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/uk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/vi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/lang/zh.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/scayt/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_address.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_blockquote.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_div.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_h1.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_h2.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_h3.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_h4.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_h5.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_h6.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_p.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/showblocks/images/block_pre.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/dialogs/smiley.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/angel_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/angry_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/broken_heart.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/confused_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/cry_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/devil_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/embaressed_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/envelope.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/heart.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/kiss.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/lightbulb.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/omg_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/regular_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/sad_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/shades_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/teeth_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/thumbs_down.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/thumbs_up.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/tounge_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/smiley/images/wink_smile.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/de.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/el.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/et.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/it.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/no.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/dialogs/specialchar.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/specialchar/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/styles/styles/default.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/stylesheetparser/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/table/dialogs/table.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/tableresize/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/tabletools/dialogs/tableCell.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/templates/dialogs/templates.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/templates/templates/default.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/templates/templates/images/template1.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/templates/templates/images/template2.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/templates/templates/images/template3.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/dialogs/uicolor.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/lang/en.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/lang/he.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/uicolor.gif mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/yui/assets/yui.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/uicolor/yui/yui.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/wsc/dialogs/ciframe.html mode change 100755 => 100644 branding/default/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html mode change 100755 => 100644 branding/default/js/ckeditor/plugins/wsc/dialogs/wsc.css mode change 100755 => 100644 branding/default/js/ckeditor/plugins/wsc/dialogs/wsc.js mode change 100755 => 100644 branding/default/js/ckeditor/plugins/xml/plugin.js mode change 100755 => 100644 branding/default/js/ckeditor/samples/ajax.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/api.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/appendto.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/assets/inlineall/logo.png mode change 100755 => 100644 branding/default/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css mode change 100755 => 100644 branding/default/js/ckeditor/samples/assets/posteddata.php mode change 100755 => 100644 branding/default/js/ckeditor/samples/assets/sample.css mode change 100755 => 100644 branding/default/js/ckeditor/samples/assets/sample.jpg mode change 100755 => 100644 branding/default/js/ckeditor/samples/assets/uilanguages/languages.js mode change 100755 => 100644 branding/default/js/ckeditor/samples/divreplace.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/index.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/inlineall.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/inlinebycode.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/dialog/dialog.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/enterkey/enterkey.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/magicline/magicline.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/toolbar/toolbar.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/readonly.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/replacebyclass.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/replacebycode.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/sample.css mode change 100755 => 100644 branding/default/js/ckeditor/samples/sample.js mode change 100755 => 100644 branding/default/js/ckeditor/samples/sample_posteddata.php mode change 100755 => 100644 branding/default/js/ckeditor/samples/tabindex.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/uicolor.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/uilanguages.html mode change 100755 => 100644 branding/default/js/ckeditor/samples/xhtmlstyle.html mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/editor.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/icons.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/images/toolbar_start.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/skin.js mode change 100755 => 100644 branding/default/js/ckeditor/skins/kama/templates.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/dialog_ie.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/dialog_ie7.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/dialog_ie8.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/dialog_opera.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/editor.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/editor_gecko.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/editor_ie.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/editor_ie7.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/editor_ie8.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/icons.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/images/arrow.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/images/close.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/images/mini.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/moono/readme.md mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/editor.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/icons.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/skin.js mode change 100755 => 100644 branding/default/js/ckeditor/skins/office2003/templates.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/dialog.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/editor.css mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/icons.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/icons_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/dialog_sides.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/dialog_sides.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/dialog_sides_rtl.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/mini.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/noimage.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/sprites.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/sprites_ie6.png mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/images/toolbar_start.gif mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/skin.js mode change 100755 => 100644 branding/default/js/ckeditor/skins/v2/templates.css mode change 100755 => 100644 branding/default/js/ckeditor/themes/default/theme.js diff --git a/branding/default/js/ckeditor.old/_source/adapters/jquery.js b/branding/default/js/ckeditor.old/_source/adapters/jquery.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/_bootstrap.js b/branding/default/js/ckeditor.old/_source/core/_bootstrap.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/ckeditor.js b/branding/default/js/ckeditor.old/_source/core/ckeditor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/ckeditor_base.js b/branding/default/js/ckeditor.old/_source/core/ckeditor_base.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/ckeditor_basic.js b/branding/default/js/ckeditor.old/_source/core/ckeditor_basic.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/command.js b/branding/default/js/ckeditor.old/_source/core/command.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/commanddefinition.js b/branding/default/js/ckeditor.old/_source/core/commanddefinition.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/config.js b/branding/default/js/ckeditor.old/_source/core/config.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dataprocessor.js b/branding/default/js/ckeditor.old/_source/core/dataprocessor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom.js b/branding/default/js/ckeditor.old/_source/core/dom.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/comment.js b/branding/default/js/ckeditor.old/_source/core/dom/comment.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/document.js b/branding/default/js/ckeditor.old/_source/core/dom/document.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/documentfragment.js b/branding/default/js/ckeditor.old/_source/core/dom/documentfragment.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/domobject.js b/branding/default/js/ckeditor.old/_source/core/dom/domobject.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/element.js b/branding/default/js/ckeditor.old/_source/core/dom/element.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/elementpath.js b/branding/default/js/ckeditor.old/_source/core/dom/elementpath.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/event.js b/branding/default/js/ckeditor.old/_source/core/dom/event.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/node.js b/branding/default/js/ckeditor.old/_source/core/dom/node.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/nodelist.js b/branding/default/js/ckeditor.old/_source/core/dom/nodelist.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/range.js b/branding/default/js/ckeditor.old/_source/core/dom/range.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/rangelist.js b/branding/default/js/ckeditor.old/_source/core/dom/rangelist.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/text.js b/branding/default/js/ckeditor.old/_source/core/dom/text.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/walker.js b/branding/default/js/ckeditor.old/_source/core/dom/walker.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dom/window.js b/branding/default/js/ckeditor.old/_source/core/dom/window.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/dtd.js b/branding/default/js/ckeditor.old/_source/core/dtd.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/editor.js b/branding/default/js/ckeditor.old/_source/core/editor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/editor_basic.js b/branding/default/js/ckeditor.old/_source/core/editor_basic.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/env.js b/branding/default/js/ckeditor.old/_source/core/env.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/event.js b/branding/default/js/ckeditor.old/_source/core/event.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/eventInfo.js b/branding/default/js/ckeditor.old/_source/core/eventInfo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/focusmanager.js b/branding/default/js/ckeditor.old/_source/core/focusmanager.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser.js b/branding/default/js/ckeditor.old/_source/core/htmlparser.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/basicwriter.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/basicwriter.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/cdata.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/cdata.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/comment.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/comment.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/element.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/element.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/filter.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/filter.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/fragment.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/fragment.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/htmlparser/text.js b/branding/default/js/ckeditor.old/_source/core/htmlparser/text.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/lang.js b/branding/default/js/ckeditor.old/_source/core/lang.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/loader.js b/branding/default/js/ckeditor.old/_source/core/loader.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/plugindefinition.js b/branding/default/js/ckeditor.old/_source/core/plugindefinition.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/plugins.js b/branding/default/js/ckeditor.old/_source/core/plugins.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/resourcemanager.js b/branding/default/js/ckeditor.old/_source/core/resourcemanager.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/scriptloader.js b/branding/default/js/ckeditor.old/_source/core/scriptloader.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/skins.js b/branding/default/js/ckeditor.old/_source/core/skins.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/themes.js b/branding/default/js/ckeditor.old/_source/core/themes.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/tools.js b/branding/default/js/ckeditor.old/_source/core/tools.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/core/ui.js b/branding/default/js/ckeditor.old/_source/core/ui.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/_languages.js b/branding/default/js/ckeditor.old/_source/lang/_languages.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/_translationstatus.txt b/branding/default/js/ckeditor.old/_source/lang/_translationstatus.txt old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/af.js b/branding/default/js/ckeditor.old/_source/lang/af.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ar.js b/branding/default/js/ckeditor.old/_source/lang/ar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/bg.js b/branding/default/js/ckeditor.old/_source/lang/bg.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/bn.js b/branding/default/js/ckeditor.old/_source/lang/bn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/bs.js b/branding/default/js/ckeditor.old/_source/lang/bs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ca.js b/branding/default/js/ckeditor.old/_source/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/cs.js b/branding/default/js/ckeditor.old/_source/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/cy.js b/branding/default/js/ckeditor.old/_source/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/da.js b/branding/default/js/ckeditor.old/_source/lang/da.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/de.js b/branding/default/js/ckeditor.old/_source/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/el.js b/branding/default/js/ckeditor.old/_source/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/en-au.js b/branding/default/js/ckeditor.old/_source/lang/en-au.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/en-ca.js b/branding/default/js/ckeditor.old/_source/lang/en-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/en-gb.js b/branding/default/js/ckeditor.old/_source/lang/en-gb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/en.js b/branding/default/js/ckeditor.old/_source/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/eo.js b/branding/default/js/ckeditor.old/_source/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/es.js b/branding/default/js/ckeditor.old/_source/lang/es.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/et.js b/branding/default/js/ckeditor.old/_source/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/eu.js b/branding/default/js/ckeditor.old/_source/lang/eu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/fa.js b/branding/default/js/ckeditor.old/_source/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/fi.js b/branding/default/js/ckeditor.old/_source/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/fo.js b/branding/default/js/ckeditor.old/_source/lang/fo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/fr-ca.js b/branding/default/js/ckeditor.old/_source/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/fr.js b/branding/default/js/ckeditor.old/_source/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/gl.js b/branding/default/js/ckeditor.old/_source/lang/gl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/gu.js b/branding/default/js/ckeditor.old/_source/lang/gu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/he.js b/branding/default/js/ckeditor.old/_source/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/hi.js b/branding/default/js/ckeditor.old/_source/lang/hi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/hr.js b/branding/default/js/ckeditor.old/_source/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/hu.js b/branding/default/js/ckeditor.old/_source/lang/hu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/is.js b/branding/default/js/ckeditor.old/_source/lang/is.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/it.js b/branding/default/js/ckeditor.old/_source/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ja.js b/branding/default/js/ckeditor.old/_source/lang/ja.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ka.js b/branding/default/js/ckeditor.old/_source/lang/ka.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/km.js b/branding/default/js/ckeditor.old/_source/lang/km.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ko.js b/branding/default/js/ckeditor.old/_source/lang/ko.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/lt.js b/branding/default/js/ckeditor.old/_source/lang/lt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/lv.js b/branding/default/js/ckeditor.old/_source/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/mn.js b/branding/default/js/ckeditor.old/_source/lang/mn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ms.js b/branding/default/js/ckeditor.old/_source/lang/ms.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/nb.js b/branding/default/js/ckeditor.old/_source/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/nl.js b/branding/default/js/ckeditor.old/_source/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/no.js b/branding/default/js/ckeditor.old/_source/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/pl.js b/branding/default/js/ckeditor.old/_source/lang/pl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/pt-br.js b/branding/default/js/ckeditor.old/_source/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/pt.js b/branding/default/js/ckeditor.old/_source/lang/pt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ro.js b/branding/default/js/ckeditor.old/_source/lang/ro.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/ru.js b/branding/default/js/ckeditor.old/_source/lang/ru.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/sk.js b/branding/default/js/ckeditor.old/_source/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/sl.js b/branding/default/js/ckeditor.old/_source/lang/sl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/sr-latn.js b/branding/default/js/ckeditor.old/_source/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/sr.js b/branding/default/js/ckeditor.old/_source/lang/sr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/sv.js b/branding/default/js/ckeditor.old/_source/lang/sv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/th.js b/branding/default/js/ckeditor.old/_source/lang/th.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/tr.js b/branding/default/js/ckeditor.old/_source/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/uk.js b/branding/default/js/ckeditor.old/_source/lang/uk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/vi.js b/branding/default/js/ckeditor.old/_source/lang/vi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/zh-cn.js b/branding/default/js/ckeditor.old/_source/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/lang/zh.js b/branding/default/js/ckeditor.old/_source/lang/zh.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/dialogs/a11yhelp.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/dialogs/a11yhelp.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/he.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/a11yhelp/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/about.js b/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/about.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/logo_ckeditor.png b/branding/default/js/ckeditor.old/_source/plugins/about/dialogs/logo_ckeditor.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/about/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/about/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/adobeair/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/adobeair/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/ajax/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/ajax/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/autogrow/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/autogrow/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/basicstyles/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/basicstyles/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/bbcode/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/bbcode/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/bidi/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/bidi/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/blockquote/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/blockquote/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/button/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/button/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/clipboard/dialogs/paste.js b/branding/default/js/ckeditor.old/_source/plugins/clipboard/dialogs/paste.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/clipboard/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/clipboard/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/colorbutton/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/colorbutton/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/colordialog/dialogs/colordialog.js b/branding/default/js/ckeditor.old/_source/plugins/colordialog/dialogs/colordialog.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/colordialog/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/colordialog/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/contextmenu/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/contextmenu/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/devtools/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/devtools/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/devtools/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/devtools/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialog/dialogDefinition.js b/branding/default/js/ckeditor.old/_source/plugins/dialog/dialogDefinition.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialog/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/dialog/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialogadvtab/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/dialogadvtab/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/dialogui/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/dialogui/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/div/dialogs/div.js b/branding/default/js/ckeditor.old/_source/plugins/div/dialogs/div.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/div/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/div/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/docprops/dialogs/docprops.js b/branding/default/js/ckeditor.old/_source/plugins/docprops/dialogs/docprops.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/docprops/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/docprops/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/domiterator/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/domiterator/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/editingblock/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/editingblock/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/elementspath/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/elementspath/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/enterkey/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/enterkey/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/entities/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/entities/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/fakeobjects/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/fakeobjects/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/filebrowser/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/filebrowser/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/find/dialogs/find.js b/branding/default/js/ckeditor.old/_source/plugins/find/dialogs/find.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/find/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/find/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/flash/dialogs/flash.js b/branding/default/js/ckeditor.old/_source/plugins/flash/dialogs/flash.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/flash/images/placeholder.png b/branding/default/js/ckeditor.old/_source/plugins/flash/images/placeholder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/flash/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/flash/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/floatpanel/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/floatpanel/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/font/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/font/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/format/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/format/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/button.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/button.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/checkbox.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/checkbox.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/form.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/form.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/hiddenfield.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/hiddenfield.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/radio.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/radio.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/select.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/select.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textarea.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textarea.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textfield.js b/branding/default/js/ckeditor.old/_source/plugins/forms/dialogs/textfield.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/images/hiddenfield.gif b/branding/default/js/ckeditor.old/_source/plugins/forms/images/hiddenfield.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/forms/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/forms/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/horizontalrule/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/horizontalrule/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/htmldataprocessor/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/htmldataprocessor/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/htmlwriter/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/htmlwriter/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframe/dialogs/iframe.js b/branding/default/js/ckeditor.old/_source/plugins/iframe/dialogs/iframe.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframe/images/placeholder.png b/branding/default/js/ckeditor.old/_source/plugins/iframe/images/placeholder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframe/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/iframe/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/iframedialog/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/iframedialog/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/image/dialogs/image.js b/branding/default/js/ckeditor.old/_source/plugins/image/dialogs/image.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/image/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/image/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/indent/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/indent/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/justify/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/justify/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/keystrokes/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/keystrokes/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/anchor.js b/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/anchor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/link.js b/branding/default/js/ckeditor.old/_source/plugins/link/dialogs/link.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/images/anchor.gif b/branding/default/js/ckeditor.old/_source/plugins/link/images/anchor.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/link/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/link/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/list/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/list/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/listblock/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/listblock/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/liststyle/dialogs/liststyle.js b/branding/default/js/ckeditor.old/_source/plugins/liststyle/dialogs/liststyle.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/liststyle/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/liststyle/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/maximize/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/maximize/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/menu/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/menu/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/menubutton/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/menubutton/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/newpage/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/newpage/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pagebreak/images/pagebreak.gif b/branding/default/js/ckeditor.old/_source/plugins/pagebreak/images/pagebreak.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pagebreak/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/pagebreak/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/panel/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/panel/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/panelbutton/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/panelbutton/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastefromword/filter/default.js b/branding/default/js/ckeditor.old/_source/plugins/pastefromword/filter/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastefromword/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/pastefromword/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastetext/dialogs/pastetext.js b/branding/default/js/ckeditor.old/_source/plugins/pastetext/dialogs/pastetext.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/pastetext/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/pastetext/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/dialogs/placeholder.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/dialogs/placeholder.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/he.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/placeholder.gif b/branding/default/js/ckeditor.old/_source/plugins/placeholder/placeholder.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/placeholder/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/placeholder/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/popup/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/popup/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/preview/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/preview/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/print/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/print/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/removeformat/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/removeformat/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/resize/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/resize/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/richcombo/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/richcombo/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/save/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/save/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/options.js b/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/options.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/toolbar.css b/branding/default/js/ckeditor.old/_source/plugins/scayt/dialogs/toolbar.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/scayt/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/scayt/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/selection/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/selection/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_address.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_address.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_blockquote.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_blockquote.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_div.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_div.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h1.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h1.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h2.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h2.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h3.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h3.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h4.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h4.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h5.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h5.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h6.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_h6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_p.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_p.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_pre.png b/branding/default/js/ckeditor.old/_source/plugins/showblocks/images/block_pre.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showblocks/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/showblocks/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/showborders/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/showborders/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/dialogs/smiley.js b/branding/default/js/ckeditor.old/_source/plugins/smiley/dialogs/smiley.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angel_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angel_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angry_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/angry_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/broken_heart.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/broken_heart.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/confused_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/confused_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/cry_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/cry_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/devil_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/devil_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/embaressed_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/embaressed_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/envelope.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/envelope.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/heart.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/heart.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/kiss.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/kiss.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/lightbulb.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/lightbulb.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/omg_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/omg_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/regular_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/regular_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/sad_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/sad_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/shades_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/shades_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/teeth_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/teeth_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_down.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_down.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_up.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/thumbs_up.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/tounge_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/tounge_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/whatchutalkingabout_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/images/wink_smile.gif b/branding/default/js/ckeditor.old/_source/plugins/smiley/images/wink_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/smiley/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/smiley/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/sourcearea/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/sourcearea/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/specialchar/dialogs/specialchar.js b/branding/default/js/ckeditor.old/_source/plugins/specialchar/dialogs/specialchar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/specialchar/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/specialchar/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/specialchar/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/specialchar/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/styles/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/styles/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/styles/styles/default.js b/branding/default/js/ckeditor.old/_source/plugins/styles/styles/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/stylescombo/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/stylescombo/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/stylesheetparser/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/stylesheetparser/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tab/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/tab/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/table/dialogs/table.js b/branding/default/js/ckeditor.old/_source/plugins/table/dialogs/table.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/table/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/table/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tableresize/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/tableresize/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tabletools/dialogs/tableCell.js b/branding/default/js/ckeditor.old/_source/plugins/tabletools/dialogs/tableCell.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/tabletools/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/tabletools/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/dialogs/templates.js b/branding/default/js/ckeditor.old/_source/plugins/templates/dialogs/templates.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/templates/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/default.js b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template1.gif b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template1.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template2.gif b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template2.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template3.gif b/branding/default/js/ckeditor.old/_source/plugins/templates/templates/images/template3.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/toolbar/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/toolbar/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/dialogs/uicolor.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/dialogs/uicolor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/en.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/he.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/uicolor.gif b/branding/default/js/ckeditor.old/_source/plugins/uicolor/uicolor.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_bg.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_bg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_thumb.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/hue_thumb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_mask.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_mask.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_thumb.png b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/picker_thumb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/yui.css b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/assets/yui.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/yui.js b/branding/default/js/ckeditor.old/_source/plugins/uicolor/yui/yui.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/undo/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/undo/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/ciframe.html b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/ciframe.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/tmpFrameset.html b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/tmpFrameset.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.css b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.js b/branding/default/js/ckeditor.old/_source/plugins/wsc/dialogs/wsc.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wsc/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/wsc/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/wysiwygarea/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/wysiwygarea/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/plugins/xml/plugin.js b/branding/default/js/ckeditor.old/_source/plugins/xml/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/dialog.css b/branding/default/js/ckeditor.old/_source/skins/kama/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/editor.css b/branding/default/js/ckeditor.old/_source/skins/kama/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/elementspath.css b/branding/default/js/ckeditor.old/_source/skins/kama/elementspath.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/icons.css b/branding/default/js/ckeditor.old/_source/skins/kama/icons.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/icons.png b/branding/default/js/ckeditor.old/_source/skins/kama/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/icons_rtl.png b/branding/default/js/ckeditor.old/_source/skins/kama/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.gif b/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/mini.gif b/branding/default/js/ckeditor.old/_source/skins/kama/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/noimage.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites_ie6.png b/branding/default/js/ckeditor.old/_source/skins/kama/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/images/toolbar_start.gif b/branding/default/js/ckeditor.old/_source/skins/kama/images/toolbar_start.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/mainui.css b/branding/default/js/ckeditor.old/_source/skins/kama/mainui.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/menu.css b/branding/default/js/ckeditor.old/_source/skins/kama/menu.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/panel.css b/branding/default/js/ckeditor.old/_source/skins/kama/panel.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/presets.css b/branding/default/js/ckeditor.old/_source/skins/kama/presets.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/reset.css b/branding/default/js/ckeditor.old/_source/skins/kama/reset.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/richcombo.css b/branding/default/js/ckeditor.old/_source/skins/kama/richcombo.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/skin.js b/branding/default/js/ckeditor.old/_source/skins/kama/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/templates.css b/branding/default/js/ckeditor.old/_source/skins/kama/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/kama/toolbar.css b/branding/default/js/ckeditor.old/_source/skins/kama/toolbar.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/dialog.css b/branding/default/js/ckeditor.old/_source/skins/office2003/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/editor.css b/branding/default/js/ckeditor.old/_source/skins/office2003/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/elementspath.css b/branding/default/js/ckeditor.old/_source/skins/office2003/elementspath.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/icons.css b/branding/default/js/ckeditor.old/_source/skins/office2003/icons.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/icons.png b/branding/default/js/ckeditor.old/_source/skins/office2003/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/icons_rtl.png b/branding/default/js/ckeditor.old/_source/skins/office2003/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.gif b/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/mini.gif b/branding/default/js/ckeditor.old/_source/skins/office2003/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/noimage.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites_ie6.png b/branding/default/js/ckeditor.old/_source/skins/office2003/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/mainui.css b/branding/default/js/ckeditor.old/_source/skins/office2003/mainui.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/menu.css b/branding/default/js/ckeditor.old/_source/skins/office2003/menu.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/panel.css b/branding/default/js/ckeditor.old/_source/skins/office2003/panel.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/presets.css b/branding/default/js/ckeditor.old/_source/skins/office2003/presets.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/reset.css b/branding/default/js/ckeditor.old/_source/skins/office2003/reset.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/richcombo.css b/branding/default/js/ckeditor.old/_source/skins/office2003/richcombo.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/skin.js b/branding/default/js/ckeditor.old/_source/skins/office2003/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/templates.css b/branding/default/js/ckeditor.old/_source/skins/office2003/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/office2003/toolbar.css b/branding/default/js/ckeditor.old/_source/skins/office2003/toolbar.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/dialog.css b/branding/default/js/ckeditor.old/_source/skins/v2/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/editor.css b/branding/default/js/ckeditor.old/_source/skins/v2/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/elementspath.css b/branding/default/js/ckeditor.old/_source/skins/v2/elementspath.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/icons.css b/branding/default/js/ckeditor.old/_source/skins/v2/icons.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/icons.png b/branding/default/js/ckeditor.old/_source/skins/v2/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/icons_rtl.png b/branding/default/js/ckeditor.old/_source/skins/v2/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.gif b/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/mini.gif b/branding/default/js/ckeditor.old/_source/skins/v2/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/noimage.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites_ie6.png b/branding/default/js/ckeditor.old/_source/skins/v2/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/images/toolbar_start.gif b/branding/default/js/ckeditor.old/_source/skins/v2/images/toolbar_start.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/mainui.css b/branding/default/js/ckeditor.old/_source/skins/v2/mainui.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/menu.css b/branding/default/js/ckeditor.old/_source/skins/v2/menu.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/panel.css b/branding/default/js/ckeditor.old/_source/skins/v2/panel.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/presets.css b/branding/default/js/ckeditor.old/_source/skins/v2/presets.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/reset.css b/branding/default/js/ckeditor.old/_source/skins/v2/reset.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/richcombo.css b/branding/default/js/ckeditor.old/_source/skins/v2/richcombo.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/skin.js b/branding/default/js/ckeditor.old/_source/skins/v2/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/templates.css b/branding/default/js/ckeditor.old/_source/skins/v2/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/skins/v2/toolbar.css b/branding/default/js/ckeditor.old/_source/skins/v2/toolbar.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/_source/themes/default/theme.js b/branding/default/js/ckeditor.old/_source/themes/default/theme.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/.htaccess b/branding/default/js/ckeditor.old/kcfinder/core/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/autoload.php b/branding/default/js/ckeditor.old/kcfinder/core/autoload.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/browser.php b/branding/default/js/ckeditor.old/kcfinder/core/browser.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/types/type_img.php b/branding/default/js/ckeditor.old/kcfinder/core/types/type_img.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/types/type_mime.php b/branding/default/js/ckeditor.old/kcfinder/core/types/type_mime.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/core/uploader.php b/branding/default/js/ckeditor.old/kcfinder/core/uploader.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/css/index.php b/branding/default/js/ckeditor.old/kcfinder/css/index.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/.htaccess b/branding/default/js/ckeditor.old/kcfinder/doc/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/Changelog b/branding/default/js/ckeditor.old/kcfinder/doc/Changelog old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/INSTALL b/branding/default/js/ckeditor.old/kcfinder/doc/INSTALL old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.GPL b/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.GPL old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.LGPL b/branding/default/js/ckeditor.old/kcfinder/doc/LICENSE.LGPL old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/doc/README b/branding/default/js/ckeditor.old/kcfinder/doc/README old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/0bject.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/0bject.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/clipboard.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/clipboard.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/files.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/files.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/folders.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/folders.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/index.php b/branding/default/js/ckeditor.old/kcfinder/js/browser/index.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/init.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/init.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/misc.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/misc.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/settings.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/settings.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/browser/toolbar.js b/branding/default/js/ckeditor.old/kcfinder/js/browser/toolbar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/helper.js b/branding/default/js/ckeditor.old/kcfinder/js/helper.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/jquery.drag.js b/branding/default/js/ckeditor.old/kcfinder/js/jquery.drag.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/jquery.js b/branding/default/js/ckeditor.old/kcfinder/js/jquery.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/js/jquery.rightClick.js b/branding/default/js/ckeditor.old/kcfinder/js/jquery.rightClick.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/.htaccess b/branding/default/js/ckeditor.old/kcfinder/lang/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/bg.php b/branding/default/js/ckeditor.old/kcfinder/lang/bg.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/cs.php b/branding/default/js/ckeditor.old/kcfinder/lang/cs.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/de.php b/branding/default/js/ckeditor.old/kcfinder/lang/de.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/en.php b/branding/default/js/ckeditor.old/kcfinder/lang/en.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/es.php b/branding/default/js/ckeditor.old/kcfinder/lang/es.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/fr.php b/branding/default/js/ckeditor.old/kcfinder/lang/fr.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/hu.php b/branding/default/js/ckeditor.old/kcfinder/lang/hu.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/it.php b/branding/default/js/ckeditor.old/kcfinder/lang/it.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/pl.php b/branding/default/js/ckeditor.old/kcfinder/lang/pl.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/pt.php b/branding/default/js/ckeditor.old/kcfinder/lang/pt.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lang/ru.php b/branding/default/js/ckeditor.old/kcfinder/lang/ru.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/.htaccess b/branding/default/js/ckeditor.old/kcfinder/lib/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php b/branding/default/js/ckeditor.old/kcfinder/lib/class_gd.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/class_input.php b/branding/default/js/ckeditor.old/kcfinder/lib/class_input.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/class_zipFolder.php b/branding/default/js/ckeditor.old/kcfinder/lib/class_zipFolder.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_dir.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_dir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_file.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_file.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_httpCache.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_httpCache.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_path.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_path.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/lib/helper_text.php b/branding/default/js/ckeditor.old/kcfinder/lib/helper_text.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/about.txt b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/about.txt old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/..png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/..png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/.image.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/.image.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/avi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/avi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bat.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bat.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bmp.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bmp.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bz2.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/bz2.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ccd.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ccd.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cgi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cgi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/com.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/com.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/csh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/csh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cue.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/cue.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/deb.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/deb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/dll.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/dll.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/doc.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/doc.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/docx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/docx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/exe.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/exe.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fla.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fla.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/flv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/flv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fon.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/fon.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/gz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/htm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/htm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/html.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/html.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ini.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ini.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/iso.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/iso.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jar.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jar.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/java.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/java.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/jpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/js.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/js.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mds.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mds.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mdx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mdx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mid.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mid.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/midi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/midi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mkv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mkv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mov.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mov.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mp3.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mp3.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/mpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nfo.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nfo.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nrg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/nrg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ogg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ogg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pdf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pdf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/php.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/php.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/phps.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/phps.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pl.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/png.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/png.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ppt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ppt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pptx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/pptx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/qt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/qt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rpm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rpm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rtf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/rtf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/srt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/srt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sub.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/sub.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/swf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/swf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tgz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tgz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tiff.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/tiff.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/torrent.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/torrent.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ttf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/ttf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/txt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/txt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wav.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wav.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wma.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/wma.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xls.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xls.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xlsx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/xlsx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/zip.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/big/zip.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/..png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/..png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/.image.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/.image.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/avi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/avi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bat.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bat.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bmp.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bmp.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bz2.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/bz2.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ccd.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ccd.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cgi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cgi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/com.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/com.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/csh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/csh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cue.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/cue.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/deb.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/deb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/dll.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/dll.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/doc.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/doc.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/docx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/docx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/exe.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/exe.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fla.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fla.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/flv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/flv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fon.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/fon.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/gz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/htm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/htm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/html.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/html.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ini.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ini.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/iso.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/iso.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jar.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jar.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/java.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/java.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/jpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/js.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/js.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mds.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mds.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mdx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mdx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mid.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mid.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/midi.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/midi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mkv.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mkv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mov.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mov.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mp3.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mp3.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpeg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/mpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nfo.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nfo.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nrg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/nrg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ogg.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ogg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pdf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pdf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/php.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/php.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/phps.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/phps.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pl.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/png.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/png.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ppt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ppt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pptx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/pptx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/qt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/qt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rpm.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rpm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rtf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/rtf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/srt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/srt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sub.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/sub.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/swf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/swf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tgz.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tgz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tif.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tiff.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/tiff.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/torrent.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/torrent.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ttf.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/ttf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/txt.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/txt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wav.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wav.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wma.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/wma.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xls.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xls.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xlsx.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/xlsx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/zip.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/files/small/zip.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/about.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/about.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-add.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-add.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-clear.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard-clear.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/clipboard.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/copy.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/copy.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/delete.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/delete.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/download.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/download.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/folder-new.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/folder-new.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/maximize.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/maximize.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/move.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/move.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/refresh.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/refresh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/rename.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/rename.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/select.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/select.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/settings.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/settings.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/upload.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/upload.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/view.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/icons/view.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/loading.gif b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/loading.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/denied.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/denied.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder_current.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/folder_current.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/minus.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/minus.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/plus.png b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/img/tree/plus.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/init.js b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/init.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/style.css b/branding/default/js/ckeditor.old/kcfinder/themes/oxygen/style.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/.htaccess b/branding/default/js/ckeditor.old/kcfinder/tpl/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__css.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__css.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__javascript.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl__javascript.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_browser.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_browser.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_chDir.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_chDir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_deleteDir.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_deleteDir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_error.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_error.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_expand.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_expand.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_init.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_init.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_renameDir.php b/branding/default/js/ckeditor.old/kcfinder/tpl/tpl_renameDir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/kcfinder/upload/.htaccess b/branding/default/js/ckeditor.old/kcfinder/upload/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/MediaEmbed/dialogs/mediaembed.html b/branding/default/js/ckeditor.old/plugins/MediaEmbed/dialogs/mediaembed.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/MediaEmbed/images/icon.gif b/branding/default/js/ckeditor.old/plugins/MediaEmbed/images/icon.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/MediaEmbed/plugin.js b/branding/default/js/ckeditor.old/plugins/MediaEmbed/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/a11yhelp/dialogs/a11yhelp.js b/branding/default/js/ckeditor.old/plugins/a11yhelp/dialogs/a11yhelp.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/en.js b/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/he.js b/branding/default/js/ckeditor.old/plugins/a11yhelp/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/about/dialogs/about.js b/branding/default/js/ckeditor.old/plugins/about/dialogs/about.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/about/dialogs/logo_ckeditor.png b/branding/default/js/ckeditor.old/plugins/about/dialogs/logo_ckeditor.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/adobeair/plugin.js b/branding/default/js/ckeditor.old/plugins/adobeair/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/ajax/plugin.js b/branding/default/js/ckeditor.old/plugins/ajax/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/autogrow/plugin.js b/branding/default/js/ckeditor.old/plugins/autogrow/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/bbcode/plugin.js b/branding/default/js/ckeditor.old/plugins/bbcode/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/clipboard/dialogs/paste.js b/branding/default/js/ckeditor.old/plugins/clipboard/dialogs/paste.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/colordialog/dialogs/colordialog.js b/branding/default/js/ckeditor.old/plugins/colordialog/dialogs/colordialog.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/devtools/lang/en.js b/branding/default/js/ckeditor.old/plugins/devtools/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/devtools/plugin.js b/branding/default/js/ckeditor.old/plugins/devtools/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/dialog/dialogDefinition.js b/branding/default/js/ckeditor.old/plugins/dialog/dialogDefinition.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/div/dialogs/div.js b/branding/default/js/ckeditor.old/plugins/div/dialogs/div.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/docprops/dialogs/docprops.js b/branding/default/js/ckeditor.old/plugins/docprops/dialogs/docprops.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/docprops/plugin.js b/branding/default/js/ckeditor.old/plugins/docprops/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/fakeobjects/images/spacer.gif b/branding/default/js/ckeditor.old/plugins/fakeobjects/images/spacer.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/find/dialogs/find.js b/branding/default/js/ckeditor.old/plugins/find/dialogs/find.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/flash/dialogs/flash.js b/branding/default/js/ckeditor.old/plugins/flash/dialogs/flash.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/flash/images/placeholder.png b/branding/default/js/ckeditor.old/plugins/flash/images/placeholder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/button.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/button.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/checkbox.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/checkbox.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/form.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/form.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/hiddenfield.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/hiddenfield.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/radio.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/radio.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/select.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/select.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/textarea.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/textarea.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/dialogs/textfield.js b/branding/default/js/ckeditor.old/plugins/forms/dialogs/textfield.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/forms/images/hiddenfield.gif b/branding/default/js/ckeditor.old/plugins/forms/images/hiddenfield.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/iframe/dialogs/iframe.js b/branding/default/js/ckeditor.old/plugins/iframe/dialogs/iframe.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/iframe/images/placeholder.png b/branding/default/js/ckeditor.old/plugins/iframe/images/placeholder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/iframedialog/plugin.js b/branding/default/js/ckeditor.old/plugins/iframedialog/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/image/dialogs/image.js b/branding/default/js/ckeditor.old/plugins/image/dialogs/image.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/link/dialogs/anchor.js b/branding/default/js/ckeditor.old/plugins/link/dialogs/anchor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/link/dialogs/link.js b/branding/default/js/ckeditor.old/plugins/link/dialogs/link.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/link/images/anchor.gif b/branding/default/js/ckeditor.old/plugins/link/images/anchor.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/link/images/anchor.png b/branding/default/js/ckeditor.old/plugins/link/images/anchor.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/liststyle/dialogs/liststyle.js b/branding/default/js/ckeditor.old/plugins/liststyle/dialogs/liststyle.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/pagebreak/images/pagebreak.gif b/branding/default/js/ckeditor.old/plugins/pagebreak/images/pagebreak.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/pastefromword/filter/default.js b/branding/default/js/ckeditor.old/plugins/pastefromword/filter/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/pastetext/dialogs/pastetext.js b/branding/default/js/ckeditor.old/plugins/pastetext/dialogs/pastetext.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/dialogs/placeholder.js b/branding/default/js/ckeditor.old/plugins/placeholder/dialogs/placeholder.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/lang/en.js b/branding/default/js/ckeditor.old/plugins/placeholder/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/lang/he.js b/branding/default/js/ckeditor.old/plugins/placeholder/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/placeholder.gif b/branding/default/js/ckeditor.old/plugins/placeholder/placeholder.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/placeholder/plugin.js b/branding/default/js/ckeditor.old/plugins/placeholder/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/scayt/dialogs/options.js b/branding/default/js/ckeditor.old/plugins/scayt/dialogs/options.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/scayt/dialogs/toolbar.css b/branding/default/js/ckeditor.old/plugins/scayt/dialogs/toolbar.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_address.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_address.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_blockquote.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_blockquote.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_div.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_div.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h1.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h1.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h2.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h2.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h3.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h3.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h4.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h4.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h5.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h5.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h6.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_h6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_p.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_p.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/showblocks/images/block_pre.png b/branding/default/js/ckeditor.old/plugins/showblocks/images/block_pre.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/dialogs/smiley.js b/branding/default/js/ckeditor.old/plugins/smiley/dialogs/smiley.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/angel_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/angel_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/angry_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/angry_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/broken_heart.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/broken_heart.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/confused_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/confused_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/cry_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/cry_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/devil_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/devil_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/embaressed_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/embaressed_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/envelope.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/envelope.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/heart.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/heart.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/kiss.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/kiss.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/lightbulb.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/lightbulb.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/omg_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/omg_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/regular_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/regular_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/sad_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/sad_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/shades_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/shades_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/teeth_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/teeth_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_down.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_down.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_up.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/thumbs_up.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/tounge_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/tounge_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/whatchutalkingabout_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/smiley/images/wink_smile.gif b/branding/default/js/ckeditor.old/plugins/smiley/images/wink_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/specialchar/dialogs/specialchar.js b/branding/default/js/ckeditor.old/plugins/specialchar/dialogs/specialchar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/specialchar/lang/en.js b/branding/default/js/ckeditor.old/plugins/specialchar/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/styles/styles/default.js b/branding/default/js/ckeditor.old/plugins/styles/styles/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/stylesheetparser/plugin.js b/branding/default/js/ckeditor.old/plugins/stylesheetparser/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/table/dialogs/table.js b/branding/default/js/ckeditor.old/plugins/table/dialogs/table.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/tableresize/plugin.js b/branding/default/js/ckeditor.old/plugins/tableresize/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/tabletools/dialogs/tableCell.js b/branding/default/js/ckeditor.old/plugins/tabletools/dialogs/tableCell.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/templates/dialogs/templates.js b/branding/default/js/ckeditor.old/plugins/templates/dialogs/templates.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/default.js b/branding/default/js/ckeditor.old/plugins/templates/templates/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/images/template1.gif b/branding/default/js/ckeditor.old/plugins/templates/templates/images/template1.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/images/template2.gif b/branding/default/js/ckeditor.old/plugins/templates/templates/images/template2.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/templates/templates/images/template3.gif b/branding/default/js/ckeditor.old/plugins/templates/templates/images/template3.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/dialogs/uicolor.js b/branding/default/js/ckeditor.old/plugins/uicolor/dialogs/uicolor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/lang/en.js b/branding/default/js/ckeditor.old/plugins/uicolor/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/lang/he.js b/branding/default/js/ckeditor.old/plugins/uicolor/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/plugin.js b/branding/default/js/ckeditor.old/plugins/uicolor/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/uicolor.gif b/branding/default/js/ckeditor.old/plugins/uicolor/uicolor.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_bg.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_bg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_thumb.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/hue_thumb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_mask.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_mask.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_thumb.png b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/picker_thumb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/yui.css b/branding/default/js/ckeditor.old/plugins/uicolor/yui/assets/yui.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/uicolor/yui/yui.js b/branding/default/js/ckeditor.old/plugins/uicolor/yui/yui.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/ciframe.html b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/ciframe.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/tmpFrameset.html b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/tmpFrameset.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.css b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.js b/branding/default/js/ckeditor.old/plugins/wsc/dialogs/wsc.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/plugins/xml/plugin.js b/branding/default/js/ckeditor.old/plugins/xml/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/assets/inlineall/logo.png b/branding/default/js/ckeditor.old/samples/assets/inlineall/logo.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/assets/outputxhtml/outputxhtml.css b/branding/default/js/ckeditor.old/samples/assets/outputxhtml/outputxhtml.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/assets/posteddata.php b/branding/default/js/ckeditor.old/samples/assets/posteddata.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/assets/sample.css b/branding/default/js/ckeditor.old/samples/assets/sample.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/assets/sample.jpg b/branding/default/js/ckeditor.old/samples/assets/sample.jpg old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/assets/uilanguages/languages.js b/branding/default/js/ckeditor.old/samples/assets/uilanguages/languages.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/plugins/dialog/assets/my_dialog.js b/branding/default/js/ckeditor.old/samples/plugins/dialog/assets/my_dialog.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/plugins/dialog/dialog.html b/branding/default/js/ckeditor.old/samples/plugins/dialog/dialog.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/plugins/enterkey/enterkey.html b/branding/default/js/ckeditor.old/samples/plugins/enterkey/enterkey.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/plugins/toolbar/toolbar.html b/branding/default/js/ckeditor.old/samples/plugins/toolbar/toolbar.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/samples/plugins/wysiwygarea/fullpage.html b/branding/default/js/ckeditor.old/samples/plugins/wysiwygarea/fullpage.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/dialog.css b/branding/default/js/ckeditor.old/skins/kama/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/editor.css b/branding/default/js/ckeditor.old/skins/kama/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/icons.png b/branding/default/js/ckeditor.old/skins/kama/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/icons_rtl.png b/branding/default/js/ckeditor.old/skins/kama/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.gif b/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.png b/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/skins/kama/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/mini.gif b/branding/default/js/ckeditor.old/skins/kama/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/noimage.png b/branding/default/js/ckeditor.old/skins/kama/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/sprites.png b/branding/default/js/ckeditor.old/skins/kama/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/sprites_ie6.png b/branding/default/js/ckeditor.old/skins/kama/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/images/toolbar_start.gif b/branding/default/js/ckeditor.old/skins/kama/images/toolbar_start.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/skin.js b/branding/default/js/ckeditor.old/skins/kama/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/kama/templates.css b/branding/default/js/ckeditor.old/skins/kama/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog.css b/branding/default/js/ckeditor.old/skins/moono/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_ie.css b/branding/default/js/ckeditor.old/skins/moono/dialog_ie.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_ie7.css b/branding/default/js/ckeditor.old/skins/moono/dialog_ie7.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_ie8.css b/branding/default/js/ckeditor.old/skins/moono/dialog_ie8.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_iequirks.css b/branding/default/js/ckeditor.old/skins/moono/dialog_iequirks.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/dialog_opera.css b/branding/default/js/ckeditor.old/skins/moono/dialog_opera.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor.css b/branding/default/js/ckeditor.old/skins/moono/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_gecko.css b/branding/default/js/ckeditor.old/skins/moono/editor_gecko.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_ie.css b/branding/default/js/ckeditor.old/skins/moono/editor_ie.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_ie7.css b/branding/default/js/ckeditor.old/skins/moono/editor_ie7.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_ie8.css b/branding/default/js/ckeditor.old/skins/moono/editor_ie8.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/editor_iequirks.css b/branding/default/js/ckeditor.old/skins/moono/editor_iequirks.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/icons.png b/branding/default/js/ckeditor.old/skins/moono/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/images/arrow.png b/branding/default/js/ckeditor.old/skins/moono/images/arrow.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/images/close.png b/branding/default/js/ckeditor.old/skins/moono/images/close.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/images/mini.png b/branding/default/js/ckeditor.old/skins/moono/images/mini.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/moono/readme.md b/branding/default/js/ckeditor.old/skins/moono/readme.md old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/dialog.css b/branding/default/js/ckeditor.old/skins/office2003/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/editor.css b/branding/default/js/ckeditor.old/skins/office2003/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/icons.png b/branding/default/js/ckeditor.old/skins/office2003/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/icons_rtl.png b/branding/default/js/ckeditor.old/skins/office2003/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.gif b/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.png b/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/skins/office2003/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/mini.gif b/branding/default/js/ckeditor.old/skins/office2003/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/noimage.png b/branding/default/js/ckeditor.old/skins/office2003/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/sprites.png b/branding/default/js/ckeditor.old/skins/office2003/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/images/sprites_ie6.png b/branding/default/js/ckeditor.old/skins/office2003/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/skin.js b/branding/default/js/ckeditor.old/skins/office2003/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/office2003/templates.css b/branding/default/js/ckeditor.old/skins/office2003/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/dialog.css b/branding/default/js/ckeditor.old/skins/v2/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/editor.css b/branding/default/js/ckeditor.old/skins/v2/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/icons.png b/branding/default/js/ckeditor.old/skins/v2/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/icons_rtl.png b/branding/default/js/ckeditor.old/skins/v2/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.gif b/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.png b/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides_rtl.png b/branding/default/js/ckeditor.old/skins/v2/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/mini.gif b/branding/default/js/ckeditor.old/skins/v2/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/noimage.png b/branding/default/js/ckeditor.old/skins/v2/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/sprites.png b/branding/default/js/ckeditor.old/skins/v2/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/sprites_ie6.png b/branding/default/js/ckeditor.old/skins/v2/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/images/toolbar_start.gif b/branding/default/js/ckeditor.old/skins/v2/images/toolbar_start.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/skin.js b/branding/default/js/ckeditor.old/skins/v2/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/skins/v2/templates.css b/branding/default/js/ckeditor.old/skins/v2/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor.old/themes/default/theme.js b/branding/default/js/ckeditor.old/themes/default/theme.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/adapters/jquery.js b/branding/default/js/ckeditor/adapters/jquery.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/images/spacer.gif b/branding/default/js/ckeditor/images/spacer.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/browse.php b/branding/default/js/ckeditor/kcfinder/browse.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/config.php b/branding/default/js/ckeditor/kcfinder/config.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/core/.htaccess b/branding/default/js/ckeditor/kcfinder/core/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/core/autoload.php b/branding/default/js/ckeditor/kcfinder/core/autoload.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/core/browser.php b/branding/default/js/ckeditor/kcfinder/core/browser.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/core/types/type_img.php b/branding/default/js/ckeditor/kcfinder/core/types/type_img.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/core/types/type_mime.php b/branding/default/js/ckeditor/kcfinder/core/types/type_mime.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/core/uploader.php b/branding/default/js/ckeditor/kcfinder/core/uploader.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/css/index.php b/branding/default/js/ckeditor/kcfinder/css/index.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/doc/.htaccess b/branding/default/js/ckeditor/kcfinder/doc/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/doc/Changelog b/branding/default/js/ckeditor/kcfinder/doc/Changelog old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/doc/INSTALL b/branding/default/js/ckeditor/kcfinder/doc/INSTALL old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/doc/LICENSE.GPL b/branding/default/js/ckeditor/kcfinder/doc/LICENSE.GPL old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/doc/LICENSE.LGPL b/branding/default/js/ckeditor/kcfinder/doc/LICENSE.LGPL old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/doc/README b/branding/default/js/ckeditor/kcfinder/doc/README old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/0bject.js b/branding/default/js/ckeditor/kcfinder/js/browser/0bject.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/clipboard.js b/branding/default/js/ckeditor/kcfinder/js/browser/clipboard.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/files.js b/branding/default/js/ckeditor/kcfinder/js/browser/files.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/folders.js b/branding/default/js/ckeditor/kcfinder/js/browser/folders.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/index.php b/branding/default/js/ckeditor/kcfinder/js/browser/index.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/init.js b/branding/default/js/ckeditor/kcfinder/js/browser/init.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/misc.js b/branding/default/js/ckeditor/kcfinder/js/browser/misc.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/settings.js b/branding/default/js/ckeditor/kcfinder/js/browser/settings.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/browser/toolbar.js b/branding/default/js/ckeditor/kcfinder/js/browser/toolbar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/helper.js b/branding/default/js/ckeditor/kcfinder/js/helper.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/jquery.drag.js b/branding/default/js/ckeditor/kcfinder/js/jquery.drag.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/jquery.js b/branding/default/js/ckeditor/kcfinder/js/jquery.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js/jquery.rightClick.js b/branding/default/js/ckeditor/kcfinder/js/jquery.rightClick.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/js_localize.php b/branding/default/js/ckeditor/kcfinder/js_localize.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/.htaccess b/branding/default/js/ckeditor/kcfinder/lang/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/bg.php b/branding/default/js/ckeditor/kcfinder/lang/bg.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/cs.php b/branding/default/js/ckeditor/kcfinder/lang/cs.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/de.php b/branding/default/js/ckeditor/kcfinder/lang/de.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/en.php b/branding/default/js/ckeditor/kcfinder/lang/en.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/es.php b/branding/default/js/ckeditor/kcfinder/lang/es.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/fr.php b/branding/default/js/ckeditor/kcfinder/lang/fr.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/hu.php b/branding/default/js/ckeditor/kcfinder/lang/hu.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/it.php b/branding/default/js/ckeditor/kcfinder/lang/it.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/pl.php b/branding/default/js/ckeditor/kcfinder/lang/pl.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/pt.php b/branding/default/js/ckeditor/kcfinder/lang/pt.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lang/ru.php b/branding/default/js/ckeditor/kcfinder/lang/ru.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/.htaccess b/branding/default/js/ckeditor/kcfinder/lib/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/class_gd.php b/branding/default/js/ckeditor/kcfinder/lib/class_gd.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/class_input.php b/branding/default/js/ckeditor/kcfinder/lib/class_input.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/class_zipFolder.php b/branding/default/js/ckeditor/kcfinder/lib/class_zipFolder.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/helper_dir.php b/branding/default/js/ckeditor/kcfinder/lib/helper_dir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/helper_file.php b/branding/default/js/ckeditor/kcfinder/lib/helper_file.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/helper_httpCache.php b/branding/default/js/ckeditor/kcfinder/lib/helper_httpCache.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/helper_path.php b/branding/default/js/ckeditor/kcfinder/lib/helper_path.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/lib/helper_text.php b/branding/default/js/ckeditor/kcfinder/lib/helper_text.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/about.txt b/branding/default/js/ckeditor/kcfinder/themes/oxygen/about.txt old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/..png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/..png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/.image.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/.image.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/avi.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/avi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bat.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bat.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bmp.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bmp.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bz2.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/bz2.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ccd.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ccd.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/cgi.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/cgi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/com.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/com.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/csh.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/csh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/cue.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/cue.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/deb.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/deb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/dll.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/dll.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/doc.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/doc.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/docx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/docx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/exe.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/exe.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/fla.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/fla.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/flv.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/flv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/fon.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/fon.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/gif.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/gif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/gz.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/gz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/htm.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/htm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/html.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/html.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ini.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ini.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/iso.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/iso.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jar.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jar.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/java.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/java.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jpeg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jpg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/jpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/js.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/js.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mds.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mds.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mdx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mdx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mid.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mid.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/midi.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/midi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mkv.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mkv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mov.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mov.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mp3.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mp3.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mpeg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mpg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/mpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/nfo.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/nfo.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/nrg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/nrg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ogg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ogg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pdf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pdf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/php.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/php.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/phps.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/phps.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pl.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pm.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/png.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/png.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ppt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ppt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pptx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/pptx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/qt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/qt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/rpm.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/rpm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/rtf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/rtf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/sh.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/sh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/srt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/srt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/sub.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/sub.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/swf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/swf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tgz.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tgz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tif.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tiff.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/tiff.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/torrent.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/torrent.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ttf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/ttf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/txt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/txt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/wav.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/wav.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/wma.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/wma.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/xls.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/xls.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/xlsx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/xlsx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/zip.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/big/zip.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/..png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/..png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/.image.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/.image.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/avi.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/avi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bat.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bat.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bmp.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bmp.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bz2.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/bz2.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ccd.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ccd.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/cgi.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/cgi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/com.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/com.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/csh.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/csh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/cue.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/cue.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/deb.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/deb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/dll.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/dll.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/doc.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/doc.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/docx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/docx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/exe.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/exe.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/fla.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/fla.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/flv.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/flv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/fon.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/fon.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/gif.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/gif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/gz.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/gz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/htm.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/htm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/html.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/html.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ini.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ini.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/iso.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/iso.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jar.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jar.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/java.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/java.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jpeg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jpg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/jpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/js.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/js.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mds.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mds.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mdx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mdx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mid.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mid.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/midi.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/midi.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mkv.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mkv.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mov.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mov.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mp3.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mp3.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mpeg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mpeg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mpg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/mpg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/nfo.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/nfo.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/nrg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/nrg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ogg.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ogg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pdf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pdf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/php.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/php.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/phps.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/phps.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pl.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pm.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/png.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/png.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ppt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ppt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pptx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/pptx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/qt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/qt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/rpm.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/rpm.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/rtf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/rtf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/sh.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/sh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/srt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/srt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/sub.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/sub.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/swf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/swf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tgz.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tgz.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tif.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tif.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tiff.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/tiff.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/torrent.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/torrent.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ttf.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/ttf.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/txt.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/txt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/wav.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/wav.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/wma.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/wma.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/xls.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/xls.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/xlsx.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/xlsx.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/zip.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/files/small/zip.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/about.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/about.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard-add.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard-add.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard-clear.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard-clear.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/clipboard.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/copy.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/copy.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/delete.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/delete.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/download.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/download.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/folder-new.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/folder-new.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/maximize.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/maximize.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/move.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/move.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/refresh.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/refresh.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/rename.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/rename.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/select.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/select.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/settings.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/settings.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/upload.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/upload.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/view.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/icons/view.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/loading.gif b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/loading.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/denied.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/denied.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/folder.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/folder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/folder_current.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/folder_current.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/minus.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/minus.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/plus.png b/branding/default/js/ckeditor/kcfinder/themes/oxygen/img/tree/plus.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/init.js b/branding/default/js/ckeditor/kcfinder/themes/oxygen/init.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/themes/oxygen/style.css b/branding/default/js/ckeditor/kcfinder/themes/oxygen/style.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/.htaccess b/branding/default/js/ckeditor/kcfinder/tpl/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl__css.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl__css.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl__javascript.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl__javascript.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl_browser.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl_browser.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl_chDir.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl_chDir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl_deleteDir.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl_deleteDir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl_error.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl_error.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl_expand.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl_expand.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl_init.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl_init.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/tpl/tpl_renameDir.php b/branding/default/js/ckeditor/kcfinder/tpl/tpl_renameDir.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/upload.php b/branding/default/js/ckeditor/kcfinder/upload.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/kcfinder/upload/.htaccess b/branding/default/js/ckeditor/kcfinder/upload/.htaccess old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/_languages.js b/branding/default/js/ckeditor/lang/_languages.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/_translationstatus.txt b/branding/default/js/ckeditor/lang/_translationstatus.txt old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/af.js b/branding/default/js/ckeditor/lang/af.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ar.js b/branding/default/js/ckeditor/lang/ar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/bg.js b/branding/default/js/ckeditor/lang/bg.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/bn.js b/branding/default/js/ckeditor/lang/bn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/bs.js b/branding/default/js/ckeditor/lang/bs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ca.js b/branding/default/js/ckeditor/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/cs.js b/branding/default/js/ckeditor/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/cy.js b/branding/default/js/ckeditor/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/da.js b/branding/default/js/ckeditor/lang/da.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/de.js b/branding/default/js/ckeditor/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/el.js b/branding/default/js/ckeditor/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/en-au.js b/branding/default/js/ckeditor/lang/en-au.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/en-ca.js b/branding/default/js/ckeditor/lang/en-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/en-gb.js b/branding/default/js/ckeditor/lang/en-gb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/en.js b/branding/default/js/ckeditor/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/eo.js b/branding/default/js/ckeditor/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/es.js b/branding/default/js/ckeditor/lang/es.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/et.js b/branding/default/js/ckeditor/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/eu.js b/branding/default/js/ckeditor/lang/eu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/fa.js b/branding/default/js/ckeditor/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/fi.js b/branding/default/js/ckeditor/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/fo.js b/branding/default/js/ckeditor/lang/fo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/fr-ca.js b/branding/default/js/ckeditor/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/fr.js b/branding/default/js/ckeditor/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/gl.js b/branding/default/js/ckeditor/lang/gl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/gu.js b/branding/default/js/ckeditor/lang/gu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/he.js b/branding/default/js/ckeditor/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/hi.js b/branding/default/js/ckeditor/lang/hi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/hr.js b/branding/default/js/ckeditor/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/hu.js b/branding/default/js/ckeditor/lang/hu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/is.js b/branding/default/js/ckeditor/lang/is.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/it.js b/branding/default/js/ckeditor/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ja.js b/branding/default/js/ckeditor/lang/ja.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ka.js b/branding/default/js/ckeditor/lang/ka.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/km.js b/branding/default/js/ckeditor/lang/km.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ko.js b/branding/default/js/ckeditor/lang/ko.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/lt.js b/branding/default/js/ckeditor/lang/lt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/lv.js b/branding/default/js/ckeditor/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/mn.js b/branding/default/js/ckeditor/lang/mn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ms.js b/branding/default/js/ckeditor/lang/ms.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/nb.js b/branding/default/js/ckeditor/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/nl.js b/branding/default/js/ckeditor/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/no.js b/branding/default/js/ckeditor/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/pl.js b/branding/default/js/ckeditor/lang/pl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/pt-br.js b/branding/default/js/ckeditor/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/pt.js b/branding/default/js/ckeditor/lang/pt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ro.js b/branding/default/js/ckeditor/lang/ro.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/ru.js b/branding/default/js/ckeditor/lang/ru.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/sk.js b/branding/default/js/ckeditor/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/sl.js b/branding/default/js/ckeditor/lang/sl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/sr-latn.js b/branding/default/js/ckeditor/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/sr.js b/branding/default/js/ckeditor/lang/sr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/sv.js b/branding/default/js/ckeditor/lang/sv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/th.js b/branding/default/js/ckeditor/lang/th.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/tr.js b/branding/default/js/ckeditor/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/uk.js b/branding/default/js/ckeditor/lang/uk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/vi.js b/branding/default/js/ckeditor/lang/vi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/zh-cn.js b/branding/default/js/ckeditor/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/lang/zh.js b/branding/default/js/ckeditor/lang/zh.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/MediaEmbed/dialogs/mediaembed.html b/branding/default/js/ckeditor/plugins/MediaEmbed/dialogs/mediaembed.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/MediaEmbed/images/icon.gif b/branding/default/js/ckeditor/plugins/MediaEmbed/images/icon.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/MediaEmbed/plugin.js b/branding/default/js/ckeditor/plugins/MediaEmbed/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/da.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/lang/en.js b/branding/default/js/ckeditor/plugins/a11yhelp/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/a11yhelp/lang/he.js b/branding/default/js/ckeditor/plugins/a11yhelp/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/about/dialogs/about.js b/branding/default/js/ckeditor/plugins/about/dialogs/about.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png b/branding/default/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/adobeair/plugin.js b/branding/default/js/ckeditor/plugins/adobeair/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/ajax/plugin.js b/branding/default/js/ckeditor/plugins/ajax/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/autogrow/plugin.js b/branding/default/js/ckeditor/plugins/autogrow/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/bbcode/plugin.js b/branding/default/js/ckeditor/plugins/bbcode/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/clipboard/dialogs/paste.js b/branding/default/js/ckeditor/plugins/clipboard/dialogs/paste.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/css/codemirror.css b/branding/default/js/ckeditor/plugins/codemirror/css/codemirror.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/codemirror.js b/branding/default/js/ckeditor/plugins/codemirror/js/codemirror.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/css.js b/branding/default/js/ckeditor/plugins/codemirror/js/css.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/htmlmixed.js b/branding/default/js/ckeditor/plugins/codemirror/js/htmlmixed.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/javascript.js b/branding/default/js/ckeditor/plugins/codemirror/js/javascript.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/closetag.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/closetag.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/colorize.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/colorize.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/continuecomment.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/continuecomment.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/continuelist.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/continuelist.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.css b/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/dialog.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/foldcode.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/foldcode.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/formatting.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/formatting.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/javascript-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/javascript-hint.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/loadmode.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/loadmode.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/match-highlighter.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/match-highlighter.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/matchbrackets.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/matchbrackets.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/multiplex.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/multiplex.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/overlay.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/overlay.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/pig-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/pig-hint.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode-standalone.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode-standalone.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/runmode.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/search.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/search.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/searchcursor.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/searchcursor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.css b/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/simple-hint.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/util/xml-hint.js b/branding/default/js/ckeditor/plugins/codemirror/js/util/xml-hint.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/js/xml.js b/branding/default/js/ckeditor/plugins/codemirror/js/xml.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance-mobile.css b/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance-mobile.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance.css b/branding/default/js/ckeditor/plugins/codemirror/theme/ambiance.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/blackboard.css b/branding/default/js/ckeditor/plugins/codemirror/theme/blackboard.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/cobalt.css b/branding/default/js/ckeditor/plugins/codemirror/theme/cobalt.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/eclipse.css b/branding/default/js/ckeditor/plugins/codemirror/theme/eclipse.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/elegant.css b/branding/default/js/ckeditor/plugins/codemirror/theme/elegant.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/erlang-dark.css b/branding/default/js/ckeditor/plugins/codemirror/theme/erlang-dark.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/lesser-dark.css b/branding/default/js/ckeditor/plugins/codemirror/theme/lesser-dark.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/monokai.css b/branding/default/js/ckeditor/plugins/codemirror/theme/monokai.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/neat.css b/branding/default/js/ckeditor/plugins/codemirror/theme/neat.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/night.css b/branding/default/js/ckeditor/plugins/codemirror/theme/night.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/rubyblue.css b/branding/default/js/ckeditor/plugins/codemirror/theme/rubyblue.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/solarized.css b/branding/default/js/ckeditor/plugins/codemirror/theme/solarized.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/twilight.css b/branding/default/js/ckeditor/plugins/codemirror/theme/twilight.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/vibrant-ink.css b/branding/default/js/ckeditor/plugins/codemirror/theme/vibrant-ink.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/codemirror/theme/xq-dark.css b/branding/default/js/ckeditor/plugins/codemirror/theme/xq-dark.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/icons/bgcolor.png b/branding/default/js/ckeditor/plugins/colorbutton/icons/bgcolor.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/icons/textcolor.png b/branding/default/js/ckeditor/plugins/colorbutton/icons/textcolor.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/af.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/af.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ar.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/bg.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/bg.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/bn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/bn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/bs.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/bs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ca.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/cs.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/cy.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/da.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/da.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/de.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/el.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en-au.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en-au.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en-ca.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en-gb.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en-gb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/en.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/eo.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/es.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/es.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/et.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/eu.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/eu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fa.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fi.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fo.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/fr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/gl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/gl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/gu.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/gu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/he.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/hi.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/hi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/hr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/hu.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/hu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/is.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/is.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/it.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ja.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ja.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ka.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ka.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/km.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/km.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ko.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ko.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ku.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ku.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/lt.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/lt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/lv.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/mk.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/mk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/mn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/mn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ms.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ms.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/nb.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/nl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/no.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/pl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/pl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/pt-br.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/pt.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/pt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ro.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ro.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ru.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ru.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sk.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sl.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/sv.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/sv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/th.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/th.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/tr.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/ug.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/ug.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/uk.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/uk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/vi.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/vi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/lang/zh.js b/branding/default/js/ckeditor/plugins/colorbutton/lang/zh.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colorbutton/plugin.js b/branding/default/js/ckeditor/plugins/colorbutton/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/colordialog/dialogs/colordialog.js b/branding/default/js/ckeditor/plugins/colordialog/dialogs/colordialog.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/devtools/lang/en.js b/branding/default/js/ckeditor/plugins/devtools/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/devtools/plugin.js b/branding/default/js/ckeditor/plugins/devtools/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/dialog/dialogDefinition.js b/branding/default/js/ckeditor/plugins/dialog/dialogDefinition.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/div/dialogs/div.js b/branding/default/js/ckeditor/plugins/div/dialogs/div.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/docprops/dialogs/docprops.js b/branding/default/js/ckeditor/plugins/docprops/dialogs/docprops.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/docprops/plugin.js b/branding/default/js/ckeditor/plugins/docprops/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/fakeobjects/images/spacer.gif b/branding/default/js/ckeditor/plugins/fakeobjects/images/spacer.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/find/dialogs/find.js b/branding/default/js/ckeditor/plugins/find/dialogs/find.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/flash/dialogs/flash.js b/branding/default/js/ckeditor/plugins/flash/dialogs/flash.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/flash/images/placeholder.png b/branding/default/js/ckeditor/plugins/flash/images/placeholder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/af.js b/branding/default/js/ckeditor/plugins/font/lang/af.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ar.js b/branding/default/js/ckeditor/plugins/font/lang/ar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/bg.js b/branding/default/js/ckeditor/plugins/font/lang/bg.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/bn.js b/branding/default/js/ckeditor/plugins/font/lang/bn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/bs.js b/branding/default/js/ckeditor/plugins/font/lang/bs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ca.js b/branding/default/js/ckeditor/plugins/font/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/cs.js b/branding/default/js/ckeditor/plugins/font/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/cy.js b/branding/default/js/ckeditor/plugins/font/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/da.js b/branding/default/js/ckeditor/plugins/font/lang/da.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/de.js b/branding/default/js/ckeditor/plugins/font/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/el.js b/branding/default/js/ckeditor/plugins/font/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en-au.js b/branding/default/js/ckeditor/plugins/font/lang/en-au.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en-ca.js b/branding/default/js/ckeditor/plugins/font/lang/en-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en-gb.js b/branding/default/js/ckeditor/plugins/font/lang/en-gb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/en.js b/branding/default/js/ckeditor/plugins/font/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/eo.js b/branding/default/js/ckeditor/plugins/font/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/es.js b/branding/default/js/ckeditor/plugins/font/lang/es.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/et.js b/branding/default/js/ckeditor/plugins/font/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/eu.js b/branding/default/js/ckeditor/plugins/font/lang/eu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fa.js b/branding/default/js/ckeditor/plugins/font/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fi.js b/branding/default/js/ckeditor/plugins/font/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fo.js b/branding/default/js/ckeditor/plugins/font/lang/fo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/font/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/fr.js b/branding/default/js/ckeditor/plugins/font/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/gl.js b/branding/default/js/ckeditor/plugins/font/lang/gl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/gu.js b/branding/default/js/ckeditor/plugins/font/lang/gu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/he.js b/branding/default/js/ckeditor/plugins/font/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/hi.js b/branding/default/js/ckeditor/plugins/font/lang/hi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/hr.js b/branding/default/js/ckeditor/plugins/font/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/hu.js b/branding/default/js/ckeditor/plugins/font/lang/hu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/is.js b/branding/default/js/ckeditor/plugins/font/lang/is.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/it.js b/branding/default/js/ckeditor/plugins/font/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ja.js b/branding/default/js/ckeditor/plugins/font/lang/ja.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ka.js b/branding/default/js/ckeditor/plugins/font/lang/ka.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/km.js b/branding/default/js/ckeditor/plugins/font/lang/km.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ko.js b/branding/default/js/ckeditor/plugins/font/lang/ko.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ku.js b/branding/default/js/ckeditor/plugins/font/lang/ku.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/lt.js b/branding/default/js/ckeditor/plugins/font/lang/lt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/lv.js b/branding/default/js/ckeditor/plugins/font/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/mk.js b/branding/default/js/ckeditor/plugins/font/lang/mk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/mn.js b/branding/default/js/ckeditor/plugins/font/lang/mn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ms.js b/branding/default/js/ckeditor/plugins/font/lang/ms.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/nb.js b/branding/default/js/ckeditor/plugins/font/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/nl.js b/branding/default/js/ckeditor/plugins/font/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/no.js b/branding/default/js/ckeditor/plugins/font/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/pl.js b/branding/default/js/ckeditor/plugins/font/lang/pl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/pt-br.js b/branding/default/js/ckeditor/plugins/font/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/pt.js b/branding/default/js/ckeditor/plugins/font/lang/pt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ro.js b/branding/default/js/ckeditor/plugins/font/lang/ro.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ru.js b/branding/default/js/ckeditor/plugins/font/lang/ru.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sk.js b/branding/default/js/ckeditor/plugins/font/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sl.js b/branding/default/js/ckeditor/plugins/font/lang/sl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/font/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sr.js b/branding/default/js/ckeditor/plugins/font/lang/sr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/sv.js b/branding/default/js/ckeditor/plugins/font/lang/sv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/th.js b/branding/default/js/ckeditor/plugins/font/lang/th.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/tr.js b/branding/default/js/ckeditor/plugins/font/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/ug.js b/branding/default/js/ckeditor/plugins/font/lang/ug.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/uk.js b/branding/default/js/ckeditor/plugins/font/lang/uk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/vi.js b/branding/default/js/ckeditor/plugins/font/lang/vi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/font/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/lang/zh.js b/branding/default/js/ckeditor/plugins/font/lang/zh.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/font/plugin.js b/branding/default/js/ckeditor/plugins/font/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/button.js b/branding/default/js/ckeditor/plugins/forms/dialogs/button.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/checkbox.js b/branding/default/js/ckeditor/plugins/forms/dialogs/checkbox.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/form.js b/branding/default/js/ckeditor/plugins/forms/dialogs/form.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/hiddenfield.js b/branding/default/js/ckeditor/plugins/forms/dialogs/hiddenfield.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/radio.js b/branding/default/js/ckeditor/plugins/forms/dialogs/radio.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/select.js b/branding/default/js/ckeditor/plugins/forms/dialogs/select.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/textarea.js b/branding/default/js/ckeditor/plugins/forms/dialogs/textarea.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/dialogs/textfield.js b/branding/default/js/ckeditor/plugins/forms/dialogs/textfield.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/forms/images/hiddenfield.gif b/branding/default/js/ckeditor/plugins/forms/images/hiddenfield.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/icons.png b/branding/default/js/ckeditor/plugins/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/iframe/dialogs/iframe.js b/branding/default/js/ckeditor/plugins/iframe/dialogs/iframe.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/iframe/images/placeholder.png b/branding/default/js/ckeditor/plugins/iframe/images/placeholder.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/iframedialog/plugin.js b/branding/default/js/ckeditor/plugins/iframedialog/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/image/dialogs/image.js b/branding/default/js/ckeditor/plugins/image/dialogs/image.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/image/images/noimage.png b/branding/default/js/ckeditor/plugins/image/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifyblock.png b/branding/default/js/ckeditor/plugins/justify/icons/justifyblock.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifycenter.png b/branding/default/js/ckeditor/plugins/justify/icons/justifycenter.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifyleft.png b/branding/default/js/ckeditor/plugins/justify/icons/justifyleft.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/icons/justifyright.png b/branding/default/js/ckeditor/plugins/justify/icons/justifyright.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/af.js b/branding/default/js/ckeditor/plugins/justify/lang/af.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ar.js b/branding/default/js/ckeditor/plugins/justify/lang/ar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/bg.js b/branding/default/js/ckeditor/plugins/justify/lang/bg.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/bn.js b/branding/default/js/ckeditor/plugins/justify/lang/bn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/bs.js b/branding/default/js/ckeditor/plugins/justify/lang/bs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ca.js b/branding/default/js/ckeditor/plugins/justify/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/cs.js b/branding/default/js/ckeditor/plugins/justify/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/cy.js b/branding/default/js/ckeditor/plugins/justify/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/da.js b/branding/default/js/ckeditor/plugins/justify/lang/da.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/de.js b/branding/default/js/ckeditor/plugins/justify/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/el.js b/branding/default/js/ckeditor/plugins/justify/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en-au.js b/branding/default/js/ckeditor/plugins/justify/lang/en-au.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en-ca.js b/branding/default/js/ckeditor/plugins/justify/lang/en-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en-gb.js b/branding/default/js/ckeditor/plugins/justify/lang/en-gb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/en.js b/branding/default/js/ckeditor/plugins/justify/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/eo.js b/branding/default/js/ckeditor/plugins/justify/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/es.js b/branding/default/js/ckeditor/plugins/justify/lang/es.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/et.js b/branding/default/js/ckeditor/plugins/justify/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/eu.js b/branding/default/js/ckeditor/plugins/justify/lang/eu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fa.js b/branding/default/js/ckeditor/plugins/justify/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fi.js b/branding/default/js/ckeditor/plugins/justify/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fo.js b/branding/default/js/ckeditor/plugins/justify/lang/fo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/justify/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/fr.js b/branding/default/js/ckeditor/plugins/justify/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/gl.js b/branding/default/js/ckeditor/plugins/justify/lang/gl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/gu.js b/branding/default/js/ckeditor/plugins/justify/lang/gu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/he.js b/branding/default/js/ckeditor/plugins/justify/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/hi.js b/branding/default/js/ckeditor/plugins/justify/lang/hi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/hr.js b/branding/default/js/ckeditor/plugins/justify/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/hu.js b/branding/default/js/ckeditor/plugins/justify/lang/hu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/is.js b/branding/default/js/ckeditor/plugins/justify/lang/is.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/it.js b/branding/default/js/ckeditor/plugins/justify/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ja.js b/branding/default/js/ckeditor/plugins/justify/lang/ja.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ka.js b/branding/default/js/ckeditor/plugins/justify/lang/ka.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/km.js b/branding/default/js/ckeditor/plugins/justify/lang/km.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ko.js b/branding/default/js/ckeditor/plugins/justify/lang/ko.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ku.js b/branding/default/js/ckeditor/plugins/justify/lang/ku.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/lt.js b/branding/default/js/ckeditor/plugins/justify/lang/lt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/lv.js b/branding/default/js/ckeditor/plugins/justify/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/mk.js b/branding/default/js/ckeditor/plugins/justify/lang/mk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/mn.js b/branding/default/js/ckeditor/plugins/justify/lang/mn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ms.js b/branding/default/js/ckeditor/plugins/justify/lang/ms.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/nb.js b/branding/default/js/ckeditor/plugins/justify/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/nl.js b/branding/default/js/ckeditor/plugins/justify/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/no.js b/branding/default/js/ckeditor/plugins/justify/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/pl.js b/branding/default/js/ckeditor/plugins/justify/lang/pl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/pt-br.js b/branding/default/js/ckeditor/plugins/justify/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/pt.js b/branding/default/js/ckeditor/plugins/justify/lang/pt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ro.js b/branding/default/js/ckeditor/plugins/justify/lang/ro.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ru.js b/branding/default/js/ckeditor/plugins/justify/lang/ru.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sk.js b/branding/default/js/ckeditor/plugins/justify/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sl.js b/branding/default/js/ckeditor/plugins/justify/lang/sl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/justify/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sr.js b/branding/default/js/ckeditor/plugins/justify/lang/sr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/sv.js b/branding/default/js/ckeditor/plugins/justify/lang/sv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/th.js b/branding/default/js/ckeditor/plugins/justify/lang/th.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/tr.js b/branding/default/js/ckeditor/plugins/justify/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/ug.js b/branding/default/js/ckeditor/plugins/justify/lang/ug.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/uk.js b/branding/default/js/ckeditor/plugins/justify/lang/uk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/vi.js b/branding/default/js/ckeditor/plugins/justify/lang/vi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/justify/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/lang/zh.js b/branding/default/js/ckeditor/plugins/justify/lang/zh.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/justify/plugin.js b/branding/default/js/ckeditor/plugins/justify/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/link/dialogs/anchor.js b/branding/default/js/ckeditor/plugins/link/dialogs/anchor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/link/dialogs/link.js b/branding/default/js/ckeditor/plugins/link/dialogs/link.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/link/images/anchor.gif b/branding/default/js/ckeditor/plugins/link/images/anchor.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/link/images/anchor.png b/branding/default/js/ckeditor/plugins/link/images/anchor.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/liststyle/dialogs/liststyle.js b/branding/default/js/ckeditor/plugins/liststyle/dialogs/liststyle.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/magicline/images/icon.png b/branding/default/js/ckeditor/plugins/magicline/images/icon.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/menubutton/plugin.js b/branding/default/js/ckeditor/plugins/menubutton/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/pagebreak/images/pagebreak.gif b/branding/default/js/ckeditor/plugins/pagebreak/images/pagebreak.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/panelbutton/plugin.js b/branding/default/js/ckeditor/plugins/panelbutton/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/pastefromword/filter/default.js b/branding/default/js/ckeditor/plugins/pastefromword/filter/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/pastetext/dialogs/pastetext.js b/branding/default/js/ckeditor/plugins/pastetext/dialogs/pastetext.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/placeholder/dialogs/placeholder.js b/branding/default/js/ckeditor/plugins/placeholder/dialogs/placeholder.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/placeholder/lang/en.js b/branding/default/js/ckeditor/plugins/placeholder/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/placeholder/lang/he.js b/branding/default/js/ckeditor/plugins/placeholder/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/placeholder/placeholder.gif b/branding/default/js/ckeditor/plugins/placeholder/placeholder.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/placeholder/plugin.js b/branding/default/js/ckeditor/plugins/placeholder/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/LICENSE.md b/branding/default/js/ckeditor/plugins/scayt/LICENSE.md old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/README.md b/branding/default/js/ckeditor/plugins/scayt/README.md old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/dialogs/options.js b/branding/default/js/ckeditor/plugins/scayt/dialogs/options.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/dialogs/toolbar.css b/branding/default/js/ckeditor/plugins/scayt/dialogs/toolbar.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/icons/scayt.png b/branding/default/js/ckeditor/plugins/scayt/icons/scayt.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/af.js b/branding/default/js/ckeditor/plugins/scayt/lang/af.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ar.js b/branding/default/js/ckeditor/plugins/scayt/lang/ar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/bg.js b/branding/default/js/ckeditor/plugins/scayt/lang/bg.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/bn.js b/branding/default/js/ckeditor/plugins/scayt/lang/bn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/bs.js b/branding/default/js/ckeditor/plugins/scayt/lang/bs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ca.js b/branding/default/js/ckeditor/plugins/scayt/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/cs.js b/branding/default/js/ckeditor/plugins/scayt/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/cy.js b/branding/default/js/ckeditor/plugins/scayt/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/da.js b/branding/default/js/ckeditor/plugins/scayt/lang/da.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/de.js b/branding/default/js/ckeditor/plugins/scayt/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/el.js b/branding/default/js/ckeditor/plugins/scayt/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en-au.js b/branding/default/js/ckeditor/plugins/scayt/lang/en-au.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en-ca.js b/branding/default/js/ckeditor/plugins/scayt/lang/en-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en-gb.js b/branding/default/js/ckeditor/plugins/scayt/lang/en-gb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/en.js b/branding/default/js/ckeditor/plugins/scayt/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/eo.js b/branding/default/js/ckeditor/plugins/scayt/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/es.js b/branding/default/js/ckeditor/plugins/scayt/lang/es.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/et.js b/branding/default/js/ckeditor/plugins/scayt/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/eu.js b/branding/default/js/ckeditor/plugins/scayt/lang/eu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fa.js b/branding/default/js/ckeditor/plugins/scayt/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fi.js b/branding/default/js/ckeditor/plugins/scayt/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fo.js b/branding/default/js/ckeditor/plugins/scayt/lang/fo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fr-ca.js b/branding/default/js/ckeditor/plugins/scayt/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/fr.js b/branding/default/js/ckeditor/plugins/scayt/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/gl.js b/branding/default/js/ckeditor/plugins/scayt/lang/gl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/gu.js b/branding/default/js/ckeditor/plugins/scayt/lang/gu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/he.js b/branding/default/js/ckeditor/plugins/scayt/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/hi.js b/branding/default/js/ckeditor/plugins/scayt/lang/hi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/hr.js b/branding/default/js/ckeditor/plugins/scayt/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/hu.js b/branding/default/js/ckeditor/plugins/scayt/lang/hu.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/is.js b/branding/default/js/ckeditor/plugins/scayt/lang/is.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/it.js b/branding/default/js/ckeditor/plugins/scayt/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ja.js b/branding/default/js/ckeditor/plugins/scayt/lang/ja.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ka.js b/branding/default/js/ckeditor/plugins/scayt/lang/ka.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/km.js b/branding/default/js/ckeditor/plugins/scayt/lang/km.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ko.js b/branding/default/js/ckeditor/plugins/scayt/lang/ko.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ku.js b/branding/default/js/ckeditor/plugins/scayt/lang/ku.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/lt.js b/branding/default/js/ckeditor/plugins/scayt/lang/lt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/lv.js b/branding/default/js/ckeditor/plugins/scayt/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/mk.js b/branding/default/js/ckeditor/plugins/scayt/lang/mk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/mn.js b/branding/default/js/ckeditor/plugins/scayt/lang/mn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ms.js b/branding/default/js/ckeditor/plugins/scayt/lang/ms.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/nb.js b/branding/default/js/ckeditor/plugins/scayt/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/nl.js b/branding/default/js/ckeditor/plugins/scayt/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/no.js b/branding/default/js/ckeditor/plugins/scayt/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/pl.js b/branding/default/js/ckeditor/plugins/scayt/lang/pl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/pt-br.js b/branding/default/js/ckeditor/plugins/scayt/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/pt.js b/branding/default/js/ckeditor/plugins/scayt/lang/pt.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ro.js b/branding/default/js/ckeditor/plugins/scayt/lang/ro.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ru.js b/branding/default/js/ckeditor/plugins/scayt/lang/ru.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sk.js b/branding/default/js/ckeditor/plugins/scayt/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sl.js b/branding/default/js/ckeditor/plugins/scayt/lang/sl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sr-latn.js b/branding/default/js/ckeditor/plugins/scayt/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sr.js b/branding/default/js/ckeditor/plugins/scayt/lang/sr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/sv.js b/branding/default/js/ckeditor/plugins/scayt/lang/sv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/th.js b/branding/default/js/ckeditor/plugins/scayt/lang/th.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/tr.js b/branding/default/js/ckeditor/plugins/scayt/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/ug.js b/branding/default/js/ckeditor/plugins/scayt/lang/ug.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/uk.js b/branding/default/js/ckeditor/plugins/scayt/lang/uk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/vi.js b/branding/default/js/ckeditor/plugins/scayt/lang/vi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/scayt/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/lang/zh.js b/branding/default/js/ckeditor/plugins/scayt/lang/zh.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/scayt/plugin.js b/branding/default/js/ckeditor/plugins/scayt/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_address.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_address.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_blockquote.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_blockquote.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_div.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_div.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_h1.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_h1.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_h2.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_h2.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_h3.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_h3.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_h4.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_h4.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_h5.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_h5.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_h6.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_h6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_p.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_p.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/showblocks/images/block_pre.png b/branding/default/js/ckeditor/plugins/showblocks/images/block_pre.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/dialogs/smiley.js b/branding/default/js/ckeditor/plugins/smiley/dialogs/smiley.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/angel_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/angel_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/angry_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/angry_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/broken_heart.gif b/branding/default/js/ckeditor/plugins/smiley/images/broken_heart.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/confused_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/confused_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/cry_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/cry_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/devil_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/devil_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/embaressed_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/embaressed_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/envelope.gif b/branding/default/js/ckeditor/plugins/smiley/images/envelope.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/heart.gif b/branding/default/js/ckeditor/plugins/smiley/images/heart.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/kiss.gif b/branding/default/js/ckeditor/plugins/smiley/images/kiss.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/lightbulb.gif b/branding/default/js/ckeditor/plugins/smiley/images/lightbulb.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/omg_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/omg_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/regular_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/regular_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/sad_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/sad_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/shades_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/shades_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/teeth_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/teeth_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/thumbs_down.gif b/branding/default/js/ckeditor/plugins/smiley/images/thumbs_down.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/thumbs_up.gif b/branding/default/js/ckeditor/plugins/smiley/images/thumbs_up.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/tounge_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/tounge_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/smiley/images/wink_smile.gif b/branding/default/js/ckeditor/plugins/smiley/images/wink_smile.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ca.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cs.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/cy.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/de.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/de.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/el.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/el.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/en.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/eo.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/et.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/et.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fa.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fi.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/fr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/he.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/hr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/it.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/it.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ku.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/lv.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nb.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/nl.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/no.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/no.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/sk.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/tr.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/ug.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/dialogs/specialchar.js b/branding/default/js/ckeditor/plugins/specialchar/dialogs/specialchar.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/specialchar/lang/en.js b/branding/default/js/ckeditor/plugins/specialchar/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/styles/styles/default.js b/branding/default/js/ckeditor/plugins/styles/styles/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/stylesheetparser/plugin.js b/branding/default/js/ckeditor/plugins/stylesheetparser/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/table/dialogs/table.js b/branding/default/js/ckeditor/plugins/table/dialogs/table.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/tableresize/plugin.js b/branding/default/js/ckeditor/plugins/tableresize/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/tabletools/dialogs/tableCell.js b/branding/default/js/ckeditor/plugins/tabletools/dialogs/tableCell.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/templates/dialogs/templates.js b/branding/default/js/ckeditor/plugins/templates/dialogs/templates.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/templates/templates/default.js b/branding/default/js/ckeditor/plugins/templates/templates/default.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/templates/templates/images/template1.gif b/branding/default/js/ckeditor/plugins/templates/templates/images/template1.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/templates/templates/images/template2.gif b/branding/default/js/ckeditor/plugins/templates/templates/images/template2.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/templates/templates/images/template3.gif b/branding/default/js/ckeditor/plugins/templates/templates/images/template3.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/dialogs/uicolor.js b/branding/default/js/ckeditor/plugins/uicolor/dialogs/uicolor.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/lang/en.js b/branding/default/js/ckeditor/plugins/uicolor/lang/en.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/lang/he.js b/branding/default/js/ckeditor/plugins/uicolor/lang/he.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/plugin.js b/branding/default/js/ckeditor/plugins/uicolor/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/uicolor.gif b/branding/default/js/ckeditor/plugins/uicolor/uicolor.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png b/branding/default/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png b/branding/default/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png b/branding/default/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png b/branding/default/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/yui/assets/yui.css b/branding/default/js/ckeditor/plugins/uicolor/yui/assets/yui.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/uicolor/yui/yui.js b/branding/default/js/ckeditor/plugins/uicolor/yui/yui.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/wsc/dialogs/ciframe.html b/branding/default/js/ckeditor/plugins/wsc/dialogs/ciframe.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/branding/default/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/wsc/dialogs/wsc.css b/branding/default/js/ckeditor/plugins/wsc/dialogs/wsc.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/wsc/dialogs/wsc.js b/branding/default/js/ckeditor/plugins/wsc/dialogs/wsc.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/plugins/xml/plugin.js b/branding/default/js/ckeditor/plugins/xml/plugin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/ajax.html b/branding/default/js/ckeditor/samples/ajax.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/api.html b/branding/default/js/ckeditor/samples/api.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/appendto.html b/branding/default/js/ckeditor/samples/appendto.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/assets/inlineall/logo.png b/branding/default/js/ckeditor/samples/assets/inlineall/logo.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css b/branding/default/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/assets/posteddata.php b/branding/default/js/ckeditor/samples/assets/posteddata.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/assets/sample.css b/branding/default/js/ckeditor/samples/assets/sample.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/assets/sample.jpg b/branding/default/js/ckeditor/samples/assets/sample.jpg old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/assets/uilanguages/languages.js b/branding/default/js/ckeditor/samples/assets/uilanguages/languages.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/divreplace.html b/branding/default/js/ckeditor/samples/divreplace.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/index.html b/branding/default/js/ckeditor/samples/index.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/inlineall.html b/branding/default/js/ckeditor/samples/inlineall.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/inlinebycode.html b/branding/default/js/ckeditor/samples/inlinebycode.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/branding/default/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/dialog/dialog.html b/branding/default/js/ckeditor/samples/plugins/dialog/dialog.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/enterkey/enterkey.html b/branding/default/js/ckeditor/samples/plugins/enterkey/enterkey.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla b/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf b/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/branding/default/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html b/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/branding/default/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/magicline/magicline.html b/branding/default/js/ckeditor/samples/plugins/magicline/magicline.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/toolbar/toolbar.html b/branding/default/js/ckeditor/samples/plugins/toolbar/toolbar.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/branding/default/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/readonly.html b/branding/default/js/ckeditor/samples/readonly.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/replacebyclass.html b/branding/default/js/ckeditor/samples/replacebyclass.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/replacebycode.html b/branding/default/js/ckeditor/samples/replacebycode.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/sample.css b/branding/default/js/ckeditor/samples/sample.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/sample.js b/branding/default/js/ckeditor/samples/sample.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/sample_posteddata.php b/branding/default/js/ckeditor/samples/sample_posteddata.php old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/tabindex.html b/branding/default/js/ckeditor/samples/tabindex.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/uicolor.html b/branding/default/js/ckeditor/samples/uicolor.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/uilanguages.html b/branding/default/js/ckeditor/samples/uilanguages.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/samples/xhtmlstyle.html b/branding/default/js/ckeditor/samples/xhtmlstyle.html old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/dialog.css b/branding/default/js/ckeditor/skins/kama/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/editor.css b/branding/default/js/ckeditor/skins/kama/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/icons.png b/branding/default/js/ckeditor/skins/kama/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/icons_rtl.png b/branding/default/js/ckeditor/skins/kama/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/dialog_sides.gif b/branding/default/js/ckeditor/skins/kama/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/dialog_sides.png b/branding/default/js/ckeditor/skins/kama/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/dialog_sides_rtl.png b/branding/default/js/ckeditor/skins/kama/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/mini.gif b/branding/default/js/ckeditor/skins/kama/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/noimage.png b/branding/default/js/ckeditor/skins/kama/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/sprites.png b/branding/default/js/ckeditor/skins/kama/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/sprites_ie6.png b/branding/default/js/ckeditor/skins/kama/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/images/toolbar_start.gif b/branding/default/js/ckeditor/skins/kama/images/toolbar_start.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/skin.js b/branding/default/js/ckeditor/skins/kama/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/kama/templates.css b/branding/default/js/ckeditor/skins/kama/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/dialog.css b/branding/default/js/ckeditor/skins/moono/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_ie.css b/branding/default/js/ckeditor/skins/moono/dialog_ie.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_ie7.css b/branding/default/js/ckeditor/skins/moono/dialog_ie7.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_ie8.css b/branding/default/js/ckeditor/skins/moono/dialog_ie8.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/dialog_opera.css b/branding/default/js/ckeditor/skins/moono/dialog_opera.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/editor.css b/branding/default/js/ckeditor/skins/moono/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/editor_gecko.css b/branding/default/js/ckeditor/skins/moono/editor_gecko.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/editor_ie.css b/branding/default/js/ckeditor/skins/moono/editor_ie.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/editor_ie7.css b/branding/default/js/ckeditor/skins/moono/editor_ie7.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/editor_ie8.css b/branding/default/js/ckeditor/skins/moono/editor_ie8.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/icons.png b/branding/default/js/ckeditor/skins/moono/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/images/arrow.png b/branding/default/js/ckeditor/skins/moono/images/arrow.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/images/close.png b/branding/default/js/ckeditor/skins/moono/images/close.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/images/mini.png b/branding/default/js/ckeditor/skins/moono/images/mini.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/moono/readme.md b/branding/default/js/ckeditor/skins/moono/readme.md old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/dialog.css b/branding/default/js/ckeditor/skins/office2003/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/editor.css b/branding/default/js/ckeditor/skins/office2003/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/icons.png b/branding/default/js/ckeditor/skins/office2003/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/icons_rtl.png b/branding/default/js/ckeditor/skins/office2003/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/images/dialog_sides.gif b/branding/default/js/ckeditor/skins/office2003/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/images/dialog_sides.png b/branding/default/js/ckeditor/skins/office2003/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png b/branding/default/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/images/mini.gif b/branding/default/js/ckeditor/skins/office2003/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/images/noimage.png b/branding/default/js/ckeditor/skins/office2003/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/images/sprites.png b/branding/default/js/ckeditor/skins/office2003/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/images/sprites_ie6.png b/branding/default/js/ckeditor/skins/office2003/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/skin.js b/branding/default/js/ckeditor/skins/office2003/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/office2003/templates.css b/branding/default/js/ckeditor/skins/office2003/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/dialog.css b/branding/default/js/ckeditor/skins/v2/dialog.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/editor.css b/branding/default/js/ckeditor/skins/v2/editor.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/icons.png b/branding/default/js/ckeditor/skins/v2/icons.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/icons_rtl.png b/branding/default/js/ckeditor/skins/v2/icons_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/dialog_sides.gif b/branding/default/js/ckeditor/skins/v2/images/dialog_sides.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/dialog_sides.png b/branding/default/js/ckeditor/skins/v2/images/dialog_sides.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/dialog_sides_rtl.png b/branding/default/js/ckeditor/skins/v2/images/dialog_sides_rtl.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/mini.gif b/branding/default/js/ckeditor/skins/v2/images/mini.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/noimage.png b/branding/default/js/ckeditor/skins/v2/images/noimage.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/sprites.png b/branding/default/js/ckeditor/skins/v2/images/sprites.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/sprites_ie6.png b/branding/default/js/ckeditor/skins/v2/images/sprites_ie6.png old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/images/toolbar_start.gif b/branding/default/js/ckeditor/skins/v2/images/toolbar_start.gif old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/skin.js b/branding/default/js/ckeditor/skins/v2/skin.js old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/skins/v2/templates.css b/branding/default/js/ckeditor/skins/v2/templates.css old mode 100755 new mode 100644 diff --git a/branding/default/js/ckeditor/themes/default/theme.js b/branding/default/js/ckeditor/themes/default/theme.js old mode 100755 new mode 100644