diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.gnitignore b/.gnitignore old mode 100644 new mode 100755 diff --git a/cake_eclipse_helper.php b/cake_eclipse_helper.php old mode 100644 new mode 100755 diff --git a/config/core.php b/config/core.php index 4831ef73..d5d83b55 100755 --- a/config/core.php +++ b/config/core.php @@ -40,7 +40,7 @@ * In production mode, flash messages redirect after a time interval. * In development mode, you need to click the flash message to continue. */ - Configure::write('debug', 0); + Configure::write('debug', 2); /** * Application wide charset encoding */ @@ -177,39 +177,47 @@ * Cache Engine Configuration * Default settings provided below * - * File storage engine. - * - * Cache::config('default', array( - * 'engine' => 'File', //[required] - * 'duration'=> 3600, //[optional] - * 'probability'=> 100, //[optional] - * 'path' => CACHE, //[optional] use system tmp directory - remember to use absolute path - * 'prefix' => 'cake_', //[optional] prefix every cache file with this string - * 'lock' => false, //[optional] use file locking - * 'serialize' => true, [optional] - * )); - * +* File storage engine. +*/ + Cache::config('default', array( + 'engine' => 'File', //[required] + 'duration'=> 3600, //[optional] + 'probability'=> 100, //[optional] + 'path' => '/Users/karlcordes/Sites/quotenik/app/tmp/', //[optional] use system tmp directory - remember to use absolute path + 'prefix' => 'cake_', //[optional] prefix every cache file with this string + 'lock' => false, //[optional] use file locking + 'serialize' => true, + )); + + + /* + * + * + * + * */ //APC (http://pecl.php.net/package/APC) - Cache::config('default', array( + /* Cache::config('default', array( 'engine' => 'Apc', //[required] 'duration'=> 3600, //[optional] 'probability'=> 100, //[optional] 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string - )); + )); */ + /*ß + * + * + // Xcache (http://xcache.lighttpd.net/) + */ + /* Cache::config('default', array( + 'engine' => 'Xcache', //[required] + 'duration'=> 3600, //[optional] + 'probability'=> 100, //[optional] + 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string + 'user' => 'user', //user from xcache.admin.user settings + 'password' => 'password', //plaintext password (xcache.admin.pass) + )); */ /* - * Xcache (http://xcache.lighttpd.net/) - * - * Cache::config('default', array( - * 'engine' => 'Xcache', //[required] - * 'duration'=> 3600, //[optional] - * 'probability'=> 100, //[optional] - * 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string - * 'user' => 'user', //user from xcache.admin.user settings - * 'password' => 'password', //plaintext password (xcache.admin.pass) - * )); - * * * Memcache (http://www.danga.com/memcached/) * @@ -225,5 +233,4 @@ * )); * */ - //Cache::config('default', array('engine' => 'File')); ?> \ No newline at end of file diff --git a/config/database.php.default b/config/database.php.default deleted file mode 100755 index 40af9763..00000000 --- a/config/database.php.default +++ /dev/null @@ -1,103 +0,0 @@ - - * Copyright 2005-2008, Cake Software Foundation, Inc. - * 1785 E. Sahara Avenue, Suite 490-204 - * Las Vegas, Nevada 89104 - * - * Licensed under The MIT License - * Redistributions of files must retain the above copyright notice. - * - * @filesource - * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. - * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project - * @package cake - * @subpackage cake.app.config - * @since CakePHP(tm) v 0.2.9 - * @version $Revision: 7118 $ - * @modifiedby $LastChangedBy: gwoo $ - * @lastmodified $Date: 2008-06-04 13:49:29 -0700 (Wed, 04 Jun 2008) $ - * @license http://www.opensource.org/licenses/mit-license.php The MIT License - */ -/** - * In this file you set up your database connection details. - * - * @package cake - * @subpackage cake.config - */ -/** - * Database configuration class. - * You can specify multiple configurations for production, development and testing. - * - * driver => The name of a supported driver; valid options are as follows: - * mysql - MySQL 4 & 5, - * mysqli - MySQL 4 & 5 Improved Interface (PHP5 only), - * sqlite - SQLite (PHP5 only), - * postgres - PostgreSQL 7 and higher, - * mssql - Microsoft SQL Server 2000 and higher, - * db2 - IBM DB2, Cloudscape, and Apache Derby (http://php.net/ibm-db2) - * oracle - Oracle 8 and higher - * firebird - Firebird/Interbase - * sybase - Sybase ASE - * adodb-[drivername] - ADOdb interface wrapper (see below), - * pear-[drivername] - PEAR::DB wrapper - * - * You can add custom database drivers (or override existing drivers) by adding the - * appropriate file to app/models/datasources/dbo. Drivers should be named 'dbo_x.php', - * where 'x' is the name of the database. - * - * persistent => true / false - * Determines whether or not the database should use a persistent connection - * - * connect => - * ADOdb set the connect to one of these - * (http://phplens.com/adodb/supported.databases.html) and - * append it '|p' for persistent connection. (mssql|p for example, or just mssql for not persistent) - * For all other databases, this setting is deprecated. - * - * host => - * the host you connect to the database. To add a socket or port number, use 'port' => # - * - * prefix => - * Uses the given prefix for all the tables in this database. This setting can be overridden - * on a per-table basis with the Model::$tablePrefix property. - * - * schema => - * For Postgres and DB2, specifies which schema you would like to use the tables in. Postgres defaults to - * 'public', DB2 defaults to empty. - * - * encoding => - * For MySQL, MySQLi, Postgres and DB2, specifies the character encoding to use when connecting to the - * database. Defaults to 'UTF-8' for DB2. Uses database default for all others. - * - */ -class DATABASE_CONFIG { - - var $default = array( - 'driver' => 'mysql', - 'persistent' => false, - 'host' => 'localhost', - 'login' => 'user', - 'password' => 'password', - 'database' => 'database_name', - 'prefix' => '', - ); - - var $test = array( - 'driver' => 'mysql', - 'persistent' => false, - 'host' => 'localhost', - 'login' => 'user', - 'password' => 'password', - 'database' => 'test_database_name', - 'prefix' => '', - ); -} -?> \ No newline at end of file diff --git a/controllers/app_controller.php b/controllers/app_controller.php old mode 100644 new mode 100755 diff --git a/controllers/components/image.php b/controllers/components/image.php old mode 100644 new mode 100755 diff --git a/controllers/contact_categories_controller.php b/controllers/contact_categories_controller.php old mode 100644 new mode 100755 diff --git a/controllers/customer_categories_controller.php b/controllers/customer_categories_controller.php old mode 100644 new mode 100755 diff --git a/controllers/email_attachments_controller.php b/controllers/email_attachments_controller.php old mode 100644 new mode 100755 diff --git a/controllers/emails_controller.php b/controllers/emails_controller.php old mode 100644 new mode 100755 diff --git a/controllers/enquiry_files_controller.php b/controllers/enquiry_files_controller.php old mode 100644 new mode 100755 diff --git a/controllers/groups_controller.php b/controllers/groups_controller.php old mode 100644 new mode 100755 diff --git a/controllers/industries_controller.php b/controllers/industries_controller.php old mode 100644 new mode 100755 diff --git a/controllers/principle_addresses_controller.php b/controllers/principle_addresses_controller.php old mode 100644 new mode 100755 diff --git a/controllers/principle_contacts_controller.php b/controllers/principle_contacts_controller.php old mode 100644 new mode 100755 diff --git a/controllers/product_attachments_controller.php b/controllers/product_attachments_controller.php old mode 100644 new mode 100755 diff --git a/controllers/product_categories_controller.php b/controllers/product_categories_controller.php old mode 100644 new mode 100755 diff --git a/controllers/product_options_categories_controller.php b/controllers/product_options_categories_controller.php old mode 100644 new mode 100755 diff --git a/controllers/product_options_controller.php b/controllers/product_options_controller.php old mode 100644 new mode 100755 diff --git a/controllers/quote_pages_controller.php b/controllers/quote_pages_controller.php old mode 100644 new mode 100755 diff --git a/controllers/quote_products_controller.php b/controllers/quote_products_controller.php old mode 100644 new mode 100755 diff --git a/models/app_model.php b/models/app_model.php old mode 100644 new mode 100755 diff --git a/models/contact_category.php b/models/contact_category.php old mode 100644 new mode 100755 diff --git a/models/costing.php b/models/costing.php old mode 100644 new mode 100755 diff --git a/models/customer.php b/models/customer.php index 812b2195..28f39fee 100755 --- a/models/customer.php +++ b/models/customer.php @@ -71,9 +71,12 @@ class Customer extends AppModel { 'counterQuery' => '' ) ); - - var $belongsTo = array('CustomerCategory'=>array('className' => 'CustomerCategory', - 'foreignKey' => 'customer_category_id')); + + + + var $belongsTo = array('CustomerCategory'=> + array('className' => 'CustomerCategory','foreignKey' => 'customer_category_id') + ); @@ -85,7 +88,5 @@ class Customer extends AppModel { 'associationForeignKey' => 'industry_id' ) ); - - } -?> +?> \ No newline at end of file diff --git a/models/customer_category.php b/models/customer_category.php old mode 100644 new mode 100755 diff --git a/models/email.php b/models/email.php old mode 100644 new mode 100755 diff --git a/models/email_attachment.php b/models/email_attachment.php old mode 100644 new mode 100755 diff --git a/models/enquiry_email_queue.php b/models/enquiry_email_queue.php old mode 100644 new mode 100755 diff --git a/models/enquiry_file.php b/models/enquiry_file.php old mode 100644 new mode 100755 diff --git a/models/group.php b/models/group.php old mode 100644 new mode 100755 diff --git a/models/industry.php b/models/industry.php old mode 100644 new mode 100755 index 0838e991..7ea4a4d8 --- a/models/industry.php +++ b/models/industry.php @@ -3,14 +3,12 @@ class Industry extends AppModel { var $name = 'Industry'; - + var $hasAndBelongsToMany = array ( 'Customer' => array( 'className' => 'Customer', 'joinTable' => 'industries_customers' - // 'foreignKey' => 'industry_id', - // 'associationForeignKey' => 'customer_id' ) ); @@ -36,4 +34,4 @@ class Industry extends AppModel { } -?> +?> \ No newline at end of file diff --git a/models/principle_address.php b/models/principle_address.php old mode 100644 new mode 100755 diff --git a/models/principle_contact.php b/models/principle_contact.php old mode 100644 new mode 100755 diff --git a/models/product_attachment.php b/models/product_attachment.php old mode 100644 new mode 100755 diff --git a/models/product_category.php b/models/product_category.php old mode 100644 new mode 100755 diff --git a/models/product_option.php b/models/product_option.php old mode 100644 new mode 100755 diff --git a/models/product_options_category.php b/models/product_options_category.php old mode 100644 new mode 100755 diff --git a/models/quote_page.php b/models/quote_page.php old mode 100644 new mode 100755 diff --git a/tmp/.gitignore b/tmp/.gitignore old mode 100644 new mode 100755 diff --git a/vendors/shells/enquiry_email.php b/vendors/shells/enquiry_email.php old mode 100644 new mode 100755 diff --git a/vendors/shells/vault.php b/vendors/shells/vault.php old mode 100644 new mode 100755 diff --git a/vendors/tcpdf/images/cmcfooter.jpg b/vendors/tcpdf/images/cmcfooter.jpg old mode 100644 new mode 100755 diff --git a/vendors/tcpdf/images/cmcfooter.png b/vendors/tcpdf/images/cmcfooter.png old mode 100644 new mode 100755 diff --git a/vendors/xtcpdf.php b/vendors/xtcpdf.php old mode 100644 new mode 100755 diff --git a/views/addresses/add_another.ctp b/views/addresses/add_another.ctp old mode 100644 new mode 100755 diff --git a/views/addresses/remove_another.ctp b/views/addresses/remove_another.ctp old mode 100644 new mode 100755 diff --git a/views/contact_categories/add.ctp b/views/contact_categories/add.ctp old mode 100644 new mode 100755 diff --git a/views/contact_categories/edit.ctp b/views/contact_categories/edit.ctp old mode 100644 new mode 100755 diff --git a/views/contact_categories/index.ctp b/views/contact_categories/index.ctp old mode 100644 new mode 100755 diff --git a/views/contact_categories/view.ctp b/views/contact_categories/view.ctp old mode 100644 new mode 100755 diff --git a/views/contacts/add_another.ctp b/views/contacts/add_another.ctp old mode 100644 new mode 100755 diff --git a/views/contacts/add_one.ctp b/views/contacts/add_one.ctp old mode 100644 new mode 100755 diff --git a/views/contacts/remove_another.ctp b/views/contacts/remove_another.ctp old mode 100644 new mode 100755 diff --git a/views/contacts/remove_one.ctp b/views/contacts/remove_one.ctp old mode 100644 new mode 100755 diff --git a/views/customer_categories/add.ctp b/views/customer_categories/add.ctp old mode 100644 new mode 100755 diff --git a/views/customer_categories/edit.ctp b/views/customer_categories/edit.ctp old mode 100644 new mode 100755 diff --git a/views/customer_categories/index.ctp b/views/customer_categories/index.ctp old mode 100644 new mode 100755 diff --git a/views/customer_categories/view.ctp b/views/customer_categories/view.ctp old mode 100644 new mode 100755 diff --git a/views/customers/complete_customer.ctp b/views/customers/complete_customer.ctp old mode 100644 new mode 100755 diff --git a/views/customers/find.ctp b/views/customers/find.ctp old mode 100644 new mode 100755 diff --git a/views/customers/tagindustries.ctp b/views/customers/tagindustries.ctp old mode 100644 new mode 100755 diff --git a/views/elements/abn.ctp b/views/elements/abn.ctp old mode 100644 new mode 100755 diff --git a/views/elements/address_table.ctp b/views/elements/address_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/email/html/enquiry_added.ctp b/views/elements/email/html/enquiry_added.ctp old mode 100644 new mode 100755 diff --git a/views/elements/email/text/enquiry_added.ctp b/views/elements/email/text/enquiry_added.ctp old mode 100644 new mode 100755 diff --git a/views/elements/email_attachments.ctp b/views/elements/email_attachments.ctp old mode 100644 new mode 100755 diff --git a/views/elements/email_table.ctp b/views/elements/email_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/email_table_ajax.ctp b/views/elements/email_table_ajax.ctp old mode 100644 new mode 100755 diff --git a/views/elements/enquiry_file_table.ctp b/views/elements/enquiry_file_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/enquiry_table.ctp b/views/elements/enquiry_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/enquiry_table.ctp~ b/views/elements/enquiry_table.ctp~ old mode 100644 new mode 100755 diff --git a/views/elements/enquiry_tableworkin.ctp b/views/elements/enquiry_tableworkin.ctp old mode 100644 new mode 100755 diff --git a/views/elements/payment_terms_box.ctp b/views/elements/payment_terms_box.ctp old mode 100644 new mode 100755 diff --git a/views/elements/principle_address_table.ctp b/views/elements/principle_address_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/principle_contacts.ctp b/views/elements/principle_contacts.ctp old mode 100644 new mode 100755 diff --git a/views/elements/principle_contacts_email_box.ctp b/views/elements/principle_contacts_email_box.ctp old mode 100644 new mode 100755 diff --git a/views/elements/product_attachment_table.ctp b/views/elements/product_attachment_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/product_costing.ctp b/views/elements/product_costing.ctp old mode 100644 new mode 100755 diff --git a/views/elements/product_list.ctp b/views/elements/product_list.ctp old mode 100644 new mode 100755 diff --git a/views/elements/product_table.ctp b/views/elements/product_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/quote_table.ctp b/views/elements/quote_table.ctp old mode 100644 new mode 100755 diff --git a/views/elements/tipbox.ctp b/views/elements/tipbox.ctp old mode 100644 new mode 100755 diff --git a/views/emails/add.ctp b/views/emails/add.ctp old mode 100644 new mode 100755 diff --git a/views/emails/frame.ctp b/views/emails/frame.ctp old mode 100644 new mode 100755 diff --git a/views/emails/index.ctp b/views/emails/index.ctp old mode 100644 new mode 100755 diff --git a/views/emails/print.ctp b/views/emails/print.ctp old mode 100644 new mode 100755 diff --git a/views/emails/printview.ctp b/views/emails/printview.ctp old mode 100644 new mode 100755 diff --git a/views/emails/show.ctp b/views/emails/show.ctp old mode 100644 new mode 100755 diff --git a/views/emails/view.ctp b/views/emails/view.ctp old mode 100644 new mode 100755 diff --git a/views/enquiries/complete_customer.ctp b/views/enquiries/complete_customer.ctp old mode 100644 new mode 100755 diff --git a/views/enquiries/update_status.ctp b/views/enquiries/update_status.ctp old mode 100644 new mode 100755 diff --git a/views/enquiry_files/add.ctp b/views/enquiry_files/add.ctp old mode 100644 new mode 100755 diff --git a/views/groups/add.ctp b/views/groups/add.ctp old mode 100644 new mode 100755 diff --git a/views/groups/edit.ctp b/views/groups/edit.ctp old mode 100644 new mode 100755 diff --git a/views/groups/index.ctp b/views/groups/index.ctp old mode 100644 new mode 100755 diff --git a/views/groups/view.ctp b/views/groups/view.ctp old mode 100644 new mode 100755 diff --git a/views/helpers/fck.php b/views/helpers/fck.php old mode 100644 new mode 100755 diff --git a/views/helpers/link.php b/views/helpers/link.php old mode 100644 new mode 100755 diff --git a/views/industries/.edit.ctp.swp b/views/industries/.edit.ctp.swp old mode 100644 new mode 100755 diff --git a/views/industries/add.ctp b/views/industries/add.ctp old mode 100644 new mode 100755 diff --git a/views/industries/edit.ctp b/views/industries/edit.ctp old mode 100644 new mode 100755 diff --git a/views/industries/index.ctp b/views/industries/index.ctp old mode 100644 new mode 100755 diff --git a/views/industries/view.ctp b/views/industries/view.ctp old mode 100644 new mode 100755 diff --git a/views/layouts/email/html/default.ctp b/views/layouts/email/html/default.ctp old mode 100644 new mode 100755 diff --git a/views/layouts/email/text/default.ctp b/views/layouts/email/text/default.ctp old mode 100644 new mode 100755 diff --git a/views/layouts/email/text/default.ctp~ b/views/layouts/email/text/default.ctp~ old mode 100644 new mode 100755 diff --git a/views/layouts/minimal.ctp b/views/layouts/minimal.ctp old mode 100644 new mode 100755 diff --git a/views/layouts/pdf.ctp b/views/layouts/pdf.ctp old mode 100644 new mode 100755 diff --git a/views/pages/about.ctp b/views/pages/about.ctp old mode 100644 new mode 100755 diff --git a/views/pages/help.ctp b/views/pages/help.ctp old mode 100644 new mode 100755 diff --git a/views/pages/statistics.ctp b/views/pages/statistics.ctp old mode 100644 new mode 100755 diff --git a/views/principle_addresses/add.ctp b/views/principle_addresses/add.ctp old mode 100644 new mode 100755 diff --git a/views/principle_addresses/edit.ctp b/views/principle_addresses/edit.ctp old mode 100644 new mode 100755 diff --git a/views/principle_addresses/index.ctp b/views/principle_addresses/index.ctp old mode 100644 new mode 100755 diff --git a/views/principle_addresses/view.ctp b/views/principle_addresses/view.ctp old mode 100644 new mode 100755 diff --git a/views/principle_contacts/add.ctp b/views/principle_contacts/add.ctp old mode 100644 new mode 100755 diff --git a/views/principle_contacts/edit.ctp b/views/principle_contacts/edit.ctp old mode 100644 new mode 100755 diff --git a/views/principle_contacts/index.ctp b/views/principle_contacts/index.ctp old mode 100644 new mode 100755 diff --git a/views/principle_contacts/view.ctp b/views/principle_contacts/view.ctp old mode 100644 new mode 100755 diff --git a/views/product_attachments/add.ctp b/views/product_attachments/add.ctp old mode 100644 new mode 100755 diff --git a/views/product_categories/add.ctp b/views/product_categories/add.ctp old mode 100644 new mode 100755 diff --git a/views/product_categories/edit.ctp b/views/product_categories/edit.ctp old mode 100644 new mode 100755 diff --git a/views/product_categories/index.ctp b/views/product_categories/index.ctp old mode 100644 new mode 100755 diff --git a/views/product_categories/view.ctp b/views/product_categories/view.ctp old mode 100644 new mode 100755 diff --git a/views/product_options/add.ctp b/views/product_options/add.ctp old mode 100644 new mode 100755 diff --git a/views/product_options/edit.ctp b/views/product_options/edit.ctp old mode 100644 new mode 100755 diff --git a/views/product_options/index.ctp b/views/product_options/index.ctp old mode 100644 new mode 100755 diff --git a/views/product_options/view.ctp b/views/product_options/view.ctp old mode 100644 new mode 100755 diff --git a/views/product_options_categories/add.ctp b/views/product_options_categories/add.ctp old mode 100644 new mode 100755 diff --git a/views/product_options_categories/edit.ctp b/views/product_options_categories/edit.ctp old mode 100644 new mode 100755 diff --git a/views/product_options_categories/index.ctp b/views/product_options_categories/index.ctp old mode 100644 new mode 100755 diff --git a/views/product_options_categories/view.ctp b/views/product_options_categories/view.ctp old mode 100644 new mode 100755 diff --git a/views/products/add_costing.ctp b/views/products/add_costing.ctp old mode 100644 new mode 100755 diff --git a/views/quote_pages/add.ctp b/views/quote_pages/add.ctp old mode 100644 new mode 100755 diff --git a/views/quote_pages/edit.ctp b/views/quote_pages/edit.ctp old mode 100644 new mode 100755 diff --git a/views/quote_pages/frame.ctp b/views/quote_pages/frame.ctp old mode 100644 new mode 100755 diff --git a/views/quote_pages/index.ctp b/views/quote_pages/index.ctp old mode 100644 new mode 100755 diff --git a/views/quote_pages/show.ctp b/views/quote_pages/show.ctp old mode 100644 new mode 100755 diff --git a/views/quote_pages/view.ctp b/views/quote_pages/view.ctp old mode 100644 new mode 100755 diff --git a/views/quote_products/add.ctp b/views/quote_products/add.ctp old mode 100644 new mode 100755 diff --git a/views/quote_products/edit.ctp b/views/quote_products/edit.ctp old mode 100644 new mode 100755 diff --git a/views/quote_products/index.ctp b/views/quote_products/index.ctp old mode 100644 new mode 100755 diff --git a/views/quote_products/principle_products.ctp b/views/quote_products/principle_products.ctp old mode 100644 new mode 100755 diff --git a/views/quote_products/product_options.ctp b/views/quote_products/product_options.ctp old mode 100644 new mode 100755 diff --git a/views/quote_products/view.ctp b/views/quote_products/view.ctp old mode 100644 new mode 100755 diff --git a/views/quotes/frame.ctp b/views/quotes/frame.ctp old mode 100644 new mode 100755 diff --git a/views/quotes/pdf.ctp b/views/quotes/pdf.ctp old mode 100644 new mode 100755 diff --git a/webroot/css/email.css b/webroot/css/email.css old mode 100644 new mode 100755 diff --git a/webroot/img/ajax-loader.gif b/webroot/img/ajax-loader.gif old mode 100644 new mode 100755 diff --git a/webroot/img/calculator.png b/webroot/img/calculator.png old mode 100644 new mode 100755 diff --git a/webroot/img/cmcheader.jpg b/webroot/img/cmcheader.jpg old mode 100644 new mode 100755 diff --git a/webroot/img/cmclogosmall.png b/webroot/img/cmclogosmall.png old mode 100644 new mode 100755 diff --git a/webroot/img/cmclogowhite.png b/webroot/img/cmclogowhite.png old mode 100644 new mode 100755 diff --git a/webroot/img/cmclogowhite2.png b/webroot/img/cmclogowhite2.png old mode 100644 new mode 100755 diff --git a/webroot/img/edit-undo.png b/webroot/img/edit-undo.png old mode 100644 new mode 100755 diff --git a/webroot/img/email-small.png b/webroot/img/email-small.png old mode 100644 new mode 100755 diff --git a/webroot/img/email.png b/webroot/img/email.png old mode 100644 new mode 100755 diff --git a/webroot/img/favicon.ico b/webroot/img/favicon.ico old mode 100644 new mode 100755 diff --git a/webroot/img/folder-new.png b/webroot/img/folder-new.png old mode 100644 new mode 100755 diff --git a/webroot/img/folder.png b/webroot/img/folder.png old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-blue.png b/webroot/img/gradient-blue.png old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-blue.xcf b/webroot/img/gradient-blue.xcf old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-blue2.png b/webroot/img/gradient-blue2.png old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-blue2.xcf b/webroot/img/gradient-blue2.xcf old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-blue3.png b/webroot/img/gradient-blue3.png old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-blue4.png b/webroot/img/gradient-blue4.png old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-green.png b/webroot/img/gradient-green.png old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-green2.png b/webroot/img/gradient-green2.png old mode 100644 new mode 100755 diff --git a/webroot/img/gradient-green3.png b/webroot/img/gradient-green3.png old mode 100644 new mode 100755 diff --git a/webroot/img/internet-mail.png b/webroot/img/internet-mail.png old mode 100644 new mode 100755 diff --git a/webroot/img/system-search.png b/webroot/img/system-search.png old mode 100644 new mode 100755 diff --git a/webroot/img/text-x-generic.png b/webroot/img/text-x-generic.png old mode 100644 new mode 100755 diff --git a/webroot/img/tip.png b/webroot/img/tip.png old mode 100644 new mode 100755 diff --git a/webroot/img/top-gradient.png b/webroot/img/top-gradient.png old mode 100644 new mode 100755 diff --git a/webroot/img/top-gradient2.png b/webroot/img/top-gradient2.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/.htaccess b/webroot/js/ckeditor/.htaccess old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/CHANGES.html b/webroot/js/ckeditor/CHANGES.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/INSTALL.html b/webroot/js/ckeditor/INSTALL.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/LICENSE.html b/webroot/js/ckeditor/LICENSE.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/ajax.html b/webroot/js/ckeditor/_samples/ajax.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/api_dialog.html b/webroot/js/ckeditor/_samples/api_dialog.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/api_dialog/my_dialog.js b/webroot/js/ckeditor/_samples/api_dialog/my_dialog.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/divreplace.html b/webroot/js/ckeditor/_samples/divreplace.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/enterkey.html b/webroot/js/ckeditor/_samples/enterkey.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/index.html b/webroot/js/ckeditor/_samples/index.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/replacebyclass.html b/webroot/js/ckeditor/_samples/replacebyclass.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/replacebycode.html b/webroot/js/ckeditor/_samples/replacebycode.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/sample.css b/webroot/js/ckeditor/_samples/sample.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/sample.js b/webroot/js/ckeditor/_samples/sample.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/sample_posteddata.php b/webroot/js/ckeditor/_samples/sample_posteddata.php old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/skins.html b/webroot/js/ckeditor/_samples/skins.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/ui_color.html b/webroot/js/ckeditor/_samples/ui_color.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_samples/ui_languages.html b/webroot/js/ckeditor/_samples/ui_languages.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/_bootstrap.js b/webroot/js/ckeditor/_source/core/_bootstrap.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/ajax.js b/webroot/js/ckeditor/_source/core/ajax.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/ckeditor.js b/webroot/js/ckeditor/_source/core/ckeditor.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/ckeditor_base.js b/webroot/js/ckeditor/_source/core/ckeditor_base.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/ckeditor_basic.js b/webroot/js/ckeditor/_source/core/ckeditor_basic.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/command.js b/webroot/js/ckeditor/_source/core/command.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/commanddefinition.js b/webroot/js/ckeditor/_source/core/commanddefinition.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/config.js b/webroot/js/ckeditor/_source/core/config.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom.js b/webroot/js/ckeditor/_source/core/dom.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/document.js b/webroot/js/ckeditor/_source/core/dom/document.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/documentfragment.js b/webroot/js/ckeditor/_source/core/dom/documentfragment.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/domobject.js b/webroot/js/ckeditor/_source/core/dom/domobject.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/element.js b/webroot/js/ckeditor/_source/core/dom/element.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/elementpath.js b/webroot/js/ckeditor/_source/core/dom/elementpath.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/event.js b/webroot/js/ckeditor/_source/core/dom/event.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/node.js b/webroot/js/ckeditor/_source/core/dom/node.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/nodelist.js b/webroot/js/ckeditor/_source/core/dom/nodelist.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/range.js b/webroot/js/ckeditor/_source/core/dom/range.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/text.js b/webroot/js/ckeditor/_source/core/dom/text.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/walker.js b/webroot/js/ckeditor/_source/core/dom/walker.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dom/window.js b/webroot/js/ckeditor/_source/core/dom/window.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/dtd.js b/webroot/js/ckeditor/_source/core/dtd.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/editor.js b/webroot/js/ckeditor/_source/core/editor.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/editor_basic.js b/webroot/js/ckeditor/_source/core/editor_basic.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/env.js b/webroot/js/ckeditor/_source/core/env.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/event.js b/webroot/js/ckeditor/_source/core/event.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/eventInfo.js b/webroot/js/ckeditor/_source/core/eventInfo.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/focusmanager.js b/webroot/js/ckeditor/_source/core/focusmanager.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser.js b/webroot/js/ckeditor/_source/core/htmlparser.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser/basicwriter.js b/webroot/js/ckeditor/_source/core/htmlparser/basicwriter.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser/cdata.js b/webroot/js/ckeditor/_source/core/htmlparser/cdata.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser/comment.js b/webroot/js/ckeditor/_source/core/htmlparser/comment.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser/element.js b/webroot/js/ckeditor/_source/core/htmlparser/element.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser/filter.js b/webroot/js/ckeditor/_source/core/htmlparser/filter.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser/fragment.js b/webroot/js/ckeditor/_source/core/htmlparser/fragment.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/htmlparser/text.js b/webroot/js/ckeditor/_source/core/htmlparser/text.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/imagecacher.js b/webroot/js/ckeditor/_source/core/imagecacher.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/lang.js b/webroot/js/ckeditor/_source/core/lang.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/loader.js b/webroot/js/ckeditor/_source/core/loader.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/plugindefinition.js b/webroot/js/ckeditor/_source/core/plugindefinition.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/plugins.js b/webroot/js/ckeditor/_source/core/plugins.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/resourcemanager.js b/webroot/js/ckeditor/_source/core/resourcemanager.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/scriptloader.js b/webroot/js/ckeditor/_source/core/scriptloader.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/skins.js b/webroot/js/ckeditor/_source/core/skins.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/test.js b/webroot/js/ckeditor/_source/core/test.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/themes.js b/webroot/js/ckeditor/_source/core/themes.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/tools.js b/webroot/js/ckeditor/_source/core/tools.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/ui.js b/webroot/js/ckeditor/_source/core/ui.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/core/xml.js b/webroot/js/ckeditor/_source/core/xml.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/_languages.js b/webroot/js/ckeditor/_source/lang/_languages.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/_translationstatus.txt b/webroot/js/ckeditor/_source/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/af.js b/webroot/js/ckeditor/_source/lang/af.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/ar.js b/webroot/js/ckeditor/_source/lang/ar.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/bg.js b/webroot/js/ckeditor/_source/lang/bg.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/bn.js b/webroot/js/ckeditor/_source/lang/bn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/bs.js b/webroot/js/ckeditor/_source/lang/bs.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/ca.js b/webroot/js/ckeditor/_source/lang/ca.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/cs.js b/webroot/js/ckeditor/_source/lang/cs.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/da.js b/webroot/js/ckeditor/_source/lang/da.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/de.js b/webroot/js/ckeditor/_source/lang/de.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/el.js b/webroot/js/ckeditor/_source/lang/el.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/en-au.js b/webroot/js/ckeditor/_source/lang/en-au.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/en-ca.js b/webroot/js/ckeditor/_source/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/en-uk.js b/webroot/js/ckeditor/_source/lang/en-uk.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/en.js b/webroot/js/ckeditor/_source/lang/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/eo.js b/webroot/js/ckeditor/_source/lang/eo.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/es.js b/webroot/js/ckeditor/_source/lang/es.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/et.js b/webroot/js/ckeditor/_source/lang/et.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/eu.js b/webroot/js/ckeditor/_source/lang/eu.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/fa.js b/webroot/js/ckeditor/_source/lang/fa.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/fi.js b/webroot/js/ckeditor/_source/lang/fi.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/fo.js b/webroot/js/ckeditor/_source/lang/fo.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/fr-ca.js b/webroot/js/ckeditor/_source/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/fr.js b/webroot/js/ckeditor/_source/lang/fr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/gl.js b/webroot/js/ckeditor/_source/lang/gl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/gu.js b/webroot/js/ckeditor/_source/lang/gu.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/he.js b/webroot/js/ckeditor/_source/lang/he.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/hi.js b/webroot/js/ckeditor/_source/lang/hi.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/hr.js b/webroot/js/ckeditor/_source/lang/hr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/hu.js b/webroot/js/ckeditor/_source/lang/hu.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/is.js b/webroot/js/ckeditor/_source/lang/is.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/it.js b/webroot/js/ckeditor/_source/lang/it.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/ja.js b/webroot/js/ckeditor/_source/lang/ja.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/km.js b/webroot/js/ckeditor/_source/lang/km.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/ko.js b/webroot/js/ckeditor/_source/lang/ko.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/lt.js b/webroot/js/ckeditor/_source/lang/lt.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/lv.js b/webroot/js/ckeditor/_source/lang/lv.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/mn.js b/webroot/js/ckeditor/_source/lang/mn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/ms.js b/webroot/js/ckeditor/_source/lang/ms.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/nb.js b/webroot/js/ckeditor/_source/lang/nb.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/nl.js b/webroot/js/ckeditor/_source/lang/nl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/no.js b/webroot/js/ckeditor/_source/lang/no.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/pl.js b/webroot/js/ckeditor/_source/lang/pl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/pt-br.js b/webroot/js/ckeditor/_source/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/pt.js b/webroot/js/ckeditor/_source/lang/pt.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/ro.js b/webroot/js/ckeditor/_source/lang/ro.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/ru.js b/webroot/js/ckeditor/_source/lang/ru.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/sk.js b/webroot/js/ckeditor/_source/lang/sk.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/sl.js b/webroot/js/ckeditor/_source/lang/sl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/sr-latn.js b/webroot/js/ckeditor/_source/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/sr.js b/webroot/js/ckeditor/_source/lang/sr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/sv.js b/webroot/js/ckeditor/_source/lang/sv.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/th.js b/webroot/js/ckeditor/_source/lang/th.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/tr.js b/webroot/js/ckeditor/_source/lang/tr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/uk.js b/webroot/js/ckeditor/_source/lang/uk.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/vi.js b/webroot/js/ckeditor/_source/lang/vi.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/zh-cn.js b/webroot/js/ckeditor/_source/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/lang/zh.js b/webroot/js/ckeditor/_source/lang/zh.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/about/dialogs/about.js b/webroot/js/ckeditor/_source/plugins/about/dialogs/about.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png b/webroot/js/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/about/plugin.js b/webroot/js/ckeditor/_source/plugins/about/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/basicstyles/plugin.js b/webroot/js/ckeditor/_source/plugins/basicstyles/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/blockquote/plugin.js b/webroot/js/ckeditor/_source/plugins/blockquote/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/button/plugin.js b/webroot/js/ckeditor/_source/plugins/button/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/clipboard/dialogs/paste.js b/webroot/js/ckeditor/_source/plugins/clipboard/dialogs/paste.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/clipboard/plugin.js b/webroot/js/ckeditor/_source/plugins/clipboard/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/colorbutton/plugin.js b/webroot/js/ckeditor/_source/plugins/colorbutton/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/contextmenu/plugin.js b/webroot/js/ckeditor/_source/plugins/contextmenu/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/dialog/dialogDefinition.js b/webroot/js/ckeditor/_source/plugins/dialog/dialogDefinition.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/dialog/plugin.js b/webroot/js/ckeditor/_source/plugins/dialog/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/dialogui/plugin.js b/webroot/js/ckeditor/_source/plugins/dialogui/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/domiterator/plugin.js b/webroot/js/ckeditor/_source/plugins/domiterator/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/editingblock/plugin.js b/webroot/js/ckeditor/_source/plugins/editingblock/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/elementspath/plugin.js b/webroot/js/ckeditor/_source/plugins/elementspath/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/enterkey/plugin.js b/webroot/js/ckeditor/_source/plugins/enterkey/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/entities/plugin.js b/webroot/js/ckeditor/_source/plugins/entities/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/fakeobjects/plugin.js b/webroot/js/ckeditor/_source/plugins/fakeobjects/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/filebrowser/plugin.js b/webroot/js/ckeditor/_source/plugins/filebrowser/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/find/dialogs/find.js b/webroot/js/ckeditor/_source/plugins/find/dialogs/find.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/find/plugin.js b/webroot/js/ckeditor/_source/plugins/find/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/flash/dialogs/flash.js b/webroot/js/ckeditor/_source/plugins/flash/dialogs/flash.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/flash/images/placeholder.png b/webroot/js/ckeditor/_source/plugins/flash/images/placeholder.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/flash/plugin.js b/webroot/js/ckeditor/_source/plugins/flash/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/floatpanel/plugin.js b/webroot/js/ckeditor/_source/plugins/floatpanel/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/font/plugin.js b/webroot/js/ckeditor/_source/plugins/font/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/format/plugin.js b/webroot/js/ckeditor/_source/plugins/format/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/button.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/button.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/checkbox.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/checkbox.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/form.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/form.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/radio.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/radio.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/select.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/select.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/textarea.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/textarea.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/dialogs/textfield.js b/webroot/js/ckeditor/_source/plugins/forms/dialogs/textfield.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/forms/plugin.js b/webroot/js/ckeditor/_source/plugins/forms/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/horizontalrule/plugin.js b/webroot/js/ckeditor/_source/plugins/horizontalrule/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/htmldataprocessor/plugin.js b/webroot/js/ckeditor/_source/plugins/htmldataprocessor/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/htmlwriter/plugin.js b/webroot/js/ckeditor/_source/plugins/htmlwriter/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/iframedialog/plugin.js b/webroot/js/ckeditor/_source/plugins/iframedialog/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/image/dialogs/image.js b/webroot/js/ckeditor/_source/plugins/image/dialogs/image.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/image/plugin.js b/webroot/js/ckeditor/_source/plugins/image/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/indent/plugin.js b/webroot/js/ckeditor/_source/plugins/indent/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/justify/plugin.js b/webroot/js/ckeditor/_source/plugins/justify/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/keystrokes/plugin.js b/webroot/js/ckeditor/_source/plugins/keystrokes/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/link/dialogs/anchor.js b/webroot/js/ckeditor/_source/plugins/link/dialogs/anchor.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/link/dialogs/link.js b/webroot/js/ckeditor/_source/plugins/link/dialogs/link.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/link/images/anchor.gif b/webroot/js/ckeditor/_source/plugins/link/images/anchor.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/link/plugin.js b/webroot/js/ckeditor/_source/plugins/link/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/list/plugin.js b/webroot/js/ckeditor/_source/plugins/list/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/listblock/plugin.js b/webroot/js/ckeditor/_source/plugins/listblock/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/maximize/plugin.js b/webroot/js/ckeditor/_source/plugins/maximize/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/menu/plugin.js b/webroot/js/ckeditor/_source/plugins/menu/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/menubutton/plugin.js b/webroot/js/ckeditor/_source/plugins/menubutton/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/newpage/plugin.js b/webroot/js/ckeditor/_source/plugins/newpage/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif b/webroot/js/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/pagebreak/plugin.js b/webroot/js/ckeditor/_source/plugins/pagebreak/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/panel/plugin.js b/webroot/js/ckeditor/_source/plugins/panel/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/panelbutton/plugin.js b/webroot/js/ckeditor/_source/plugins/panelbutton/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/pastefromword/dialogs/pastefromword.js b/webroot/js/ckeditor/_source/plugins/pastefromword/dialogs/pastefromword.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/pastefromword/plugin.js b/webroot/js/ckeditor/_source/plugins/pastefromword/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js b/webroot/js/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/pastetext/plugin.js b/webroot/js/ckeditor/_source/plugins/pastetext/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/popup/plugin.js b/webroot/js/ckeditor/_source/plugins/popup/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/preview/plugin.js b/webroot/js/ckeditor/_source/plugins/preview/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/print/plugin.js b/webroot/js/ckeditor/_source/plugins/print/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/removeformat/plugin.js b/webroot/js/ckeditor/_source/plugins/removeformat/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/resize/plugin.js b/webroot/js/ckeditor/_source/plugins/resize/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/richcombo/plugin.js b/webroot/js/ckeditor/_source/plugins/richcombo/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/save/plugin.js b/webroot/js/ckeditor/_source/plugins/save/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/scayt/dialogs/options.js b/webroot/js/ckeditor/_source/plugins/scayt/dialogs/options.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/scayt/dialogs/toolbar.css b/webroot/js/ckeditor/_source/plugins/scayt/dialogs/toolbar.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/scayt/plugin.js b/webroot/js/ckeditor/_source/plugins/scayt/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/selection/plugin.js b/webroot/js/ckeditor/_source/plugins/selection/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_address.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_address.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_blockquote.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_blockquote.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_div.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_div.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h1.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h1.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h2.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h2.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h3.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h3.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h4.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h4.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h5.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h5.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h6.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_h6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_p.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_p.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/images/block_pre.png b/webroot/js/ckeditor/_source/plugins/showblocks/images/block_pre.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/showblocks/plugin.js b/webroot/js/ckeditor/_source/plugins/showblocks/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/dialogs/smiley.js b/webroot/js/ckeditor/_source/plugins/smiley/dialogs/smiley.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/angel_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/angel_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/angry_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/angry_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/broken_heart.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/broken_heart.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/confused_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/confused_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/cry_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/cry_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/devil_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/devil_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/envelope.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/envelope.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/heart.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/heart.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/kiss.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/kiss.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/lightbulb.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/lightbulb.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/omg_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/omg_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/regular_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/regular_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/sad_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/sad_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/shades_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/shades_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/teeth_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/teeth_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/thumbs_down.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/thumbs_down.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/thumbs_up.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/thumbs_up.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/tounge_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/tounge_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/images/wink_smile.gif b/webroot/js/ckeditor/_source/plugins/smiley/images/wink_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/smiley/plugin.js b/webroot/js/ckeditor/_source/plugins/smiley/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/sourcearea/plugin.js b/webroot/js/ckeditor/_source/plugins/sourcearea/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js b/webroot/js/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/specialchar/plugin.js b/webroot/js/ckeditor/_source/plugins/specialchar/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/styles/plugin.js b/webroot/js/ckeditor/_source/plugins/styles/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/stylescombo/plugin.js b/webroot/js/ckeditor/_source/plugins/stylescombo/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/stylescombo/styles/default.js b/webroot/js/ckeditor/_source/plugins/stylescombo/styles/default.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/tab/plugin.js b/webroot/js/ckeditor/_source/plugins/tab/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/table/dialogs/table.js b/webroot/js/ckeditor/_source/plugins/table/dialogs/table.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/table/plugin.js b/webroot/js/ckeditor/_source/plugins/table/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js b/webroot/js/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/tabletools/plugin.js b/webroot/js/ckeditor/_source/plugins/tabletools/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/templates/dialogs/templates.js b/webroot/js/ckeditor/_source/plugins/templates/dialogs/templates.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/templates/plugin.js b/webroot/js/ckeditor/_source/plugins/templates/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/templates/templates/default.js b/webroot/js/ckeditor/_source/plugins/templates/templates/default.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/templates/templates/images/template1.gif b/webroot/js/ckeditor/_source/plugins/templates/templates/images/template1.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/templates/templates/images/template2.gif b/webroot/js/ckeditor/_source/plugins/templates/templates/images/template2.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/templates/templates/images/template3.gif b/webroot/js/ckeditor/_source/plugins/templates/templates/images/template3.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/toolbar/plugin.js b/webroot/js/ckeditor/_source/plugins/toolbar/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js b/webroot/js/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/lang/en.js b/webroot/js/ckeditor/_source/plugins/uicolor/lang/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/plugin.js b/webroot/js/ckeditor/_source/plugins/uicolor/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/uicolor.gif b/webroot/js/ckeditor/_source/plugins/uicolor/uicolor.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png b/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png b/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png b/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png b/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/yui.css b/webroot/js/ckeditor/_source/plugins/uicolor/yui/assets/yui.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/uicolor/yui/yui.js b/webroot/js/ckeditor/_source/plugins/uicolor/yui/yui.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/undo/plugin.js b/webroot/js/ckeditor/_source/plugins/undo/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/wsc/dialogs/ciframe.html b/webroot/js/ckeditor/_source/plugins/wsc/dialogs/ciframe.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html b/webroot/js/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/wsc/dialogs/wsc.css b/webroot/js/ckeditor/_source/plugins/wsc/dialogs/wsc.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/wsc/dialogs/wsc.js b/webroot/js/ckeditor/_source/plugins/wsc/dialogs/wsc.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/wsc/plugin.js b/webroot/js/ckeditor/_source/plugins/wsc/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/plugins/wysiwygarea/plugin.js b/webroot/js/ckeditor/_source/plugins/wysiwygarea/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/dialog.css b/webroot/js/ckeditor/_source/skins/kama/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/editor.css b/webroot/js/ckeditor/_source/skins/kama/editor.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/elementspath.css b/webroot/js/ckeditor/_source/skins/kama/elementspath.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/icons.css b/webroot/js/ckeditor/_source/skins/kama/icons.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/icons.png b/webroot/js/ckeditor/_source/skins/kama/icons.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/dialog_sides.gif b/webroot/js/ckeditor/_source/skins/kama/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/dialog_sides.png b/webroot/js/ckeditor/_source/skins/kama/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png b/webroot/js/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/mini.gif b/webroot/js/ckeditor/_source/skins/kama/images/mini.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/noimage.png b/webroot/js/ckeditor/_source/skins/kama/images/noimage.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/sprites.png b/webroot/js/ckeditor/_source/skins/kama/images/sprites.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/sprites_ie6.png b/webroot/js/ckeditor/_source/skins/kama/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/images/toolbar_start.gif b/webroot/js/ckeditor/_source/skins/kama/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/mainui.css b/webroot/js/ckeditor/_source/skins/kama/mainui.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/menu.css b/webroot/js/ckeditor/_source/skins/kama/menu.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/panel.css b/webroot/js/ckeditor/_source/skins/kama/panel.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/presets.css b/webroot/js/ckeditor/_source/skins/kama/presets.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/reset.css b/webroot/js/ckeditor/_source/skins/kama/reset.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/richcombo.css b/webroot/js/ckeditor/_source/skins/kama/richcombo.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/skin.js b/webroot/js/ckeditor/_source/skins/kama/skin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/templates.css b/webroot/js/ckeditor/_source/skins/kama/templates.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/kama/toolbar.css b/webroot/js/ckeditor/_source/skins/kama/toolbar.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/dialog.css b/webroot/js/ckeditor/_source/skins/office2003/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/editor.css b/webroot/js/ckeditor/_source/skins/office2003/editor.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/elementspath.css b/webroot/js/ckeditor/_source/skins/office2003/elementspath.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/icons.css b/webroot/js/ckeditor/_source/skins/office2003/icons.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/icons.png b/webroot/js/ckeditor/_source/skins/office2003/icons.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/images/dialog_sides.gif b/webroot/js/ckeditor/_source/skins/office2003/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/images/dialog_sides.png b/webroot/js/ckeditor/_source/skins/office2003/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png b/webroot/js/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/images/mini.gif b/webroot/js/ckeditor/_source/skins/office2003/images/mini.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/images/noimage.png b/webroot/js/ckeditor/_source/skins/office2003/images/noimage.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/images/sprites.png b/webroot/js/ckeditor/_source/skins/office2003/images/sprites.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/images/sprites_ie6.png b/webroot/js/ckeditor/_source/skins/office2003/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/mainui.css b/webroot/js/ckeditor/_source/skins/office2003/mainui.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/menu.css b/webroot/js/ckeditor/_source/skins/office2003/menu.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/panel.css b/webroot/js/ckeditor/_source/skins/office2003/panel.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/presets.css b/webroot/js/ckeditor/_source/skins/office2003/presets.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/reset.css b/webroot/js/ckeditor/_source/skins/office2003/reset.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/richcombo.css b/webroot/js/ckeditor/_source/skins/office2003/richcombo.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/skin.js b/webroot/js/ckeditor/_source/skins/office2003/skin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/templates.css b/webroot/js/ckeditor/_source/skins/office2003/templates.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/office2003/toolbar.css b/webroot/js/ckeditor/_source/skins/office2003/toolbar.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/dialog.css b/webroot/js/ckeditor/_source/skins/v2/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/editor.css b/webroot/js/ckeditor/_source/skins/v2/editor.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/elementspath.css b/webroot/js/ckeditor/_source/skins/v2/elementspath.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/icons.css b/webroot/js/ckeditor/_source/skins/v2/icons.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/icons.png b/webroot/js/ckeditor/_source/skins/v2/icons.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/dialog_sides.gif b/webroot/js/ckeditor/_source/skins/v2/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/dialog_sides.png b/webroot/js/ckeditor/_source/skins/v2/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png b/webroot/js/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/mini.gif b/webroot/js/ckeditor/_source/skins/v2/images/mini.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/noimage.png b/webroot/js/ckeditor/_source/skins/v2/images/noimage.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/sprites.png b/webroot/js/ckeditor/_source/skins/v2/images/sprites.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/sprites_ie6.png b/webroot/js/ckeditor/_source/skins/v2/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/images/toolbar_start.gif b/webroot/js/ckeditor/_source/skins/v2/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/mainui.css b/webroot/js/ckeditor/_source/skins/v2/mainui.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/menu.css b/webroot/js/ckeditor/_source/skins/v2/menu.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/panel.css b/webroot/js/ckeditor/_source/skins/v2/panel.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/presets.css b/webroot/js/ckeditor/_source/skins/v2/presets.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/reset.css b/webroot/js/ckeditor/_source/skins/v2/reset.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/richcombo.css b/webroot/js/ckeditor/_source/skins/v2/richcombo.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/skin.js b/webroot/js/ckeditor/_source/skins/v2/skin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/templates.css b/webroot/js/ckeditor/_source/skins/v2/templates.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/skins/v2/toolbar.css b/webroot/js/ckeditor/_source/skins/v2/toolbar.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/_assets/sample.css b/webroot/js/ckeditor/_source/tests/_assets/sample.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/_assets/sample.js b/webroot/js/ckeditor/_source/tests/_assets/sample.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/_assets/sample.txt b/webroot/js/ckeditor/_source/tests/_assets/sample.txt old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/_assets/sample.xml b/webroot/js/ckeditor/_source/tests/_assets/sample.xml old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/_assets/sample_xml.txt b/webroot/js/ckeditor/_source/tests/_assets/sample_xml.txt old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/_editor/custom_config_1.js b/webroot/js/ckeditor/_source/tests/core/_editor/custom_config_1.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/_editor/custom_config_2.js b/webroot/js/ckeditor/_source/tests/core/_editor/custom_config_2.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/ajax.html b/webroot/js/ckeditor/_source/tests/core/ajax.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/bootstrap.html b/webroot/js/ckeditor/_source/tests/core/bootstrap.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/ckeditor.html b/webroot/js/ckeditor/_source/tests/core/ckeditor.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/document.html b/webroot/js/ckeditor/_source/tests/core/dom/document.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/documentfragment.html b/webroot/js/ckeditor/_source/tests/core/dom/documentfragment.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/element.html b/webroot/js/ckeditor/_source/tests/core/dom/element.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/node.html b/webroot/js/ckeditor/_source/tests/core/dom/node.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/range.html b/webroot/js/ckeditor/_source/tests/core/dom/range.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/text.html b/webroot/js/ckeditor/_source/tests/core/dom/text.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/walker.html b/webroot/js/ckeditor/_source/tests/core/dom/walker.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/dom/window.html b/webroot/js/ckeditor/_source/tests/core/dom/window.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/editor.html b/webroot/js/ckeditor/_source/tests/core/editor.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/env.html b/webroot/js/ckeditor/_source/tests/core/env.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/event.html b/webroot/js/ckeditor/_source/tests/core/event.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/htmlparser/fragment.html b/webroot/js/ckeditor/_source/tests/core/htmlparser/fragment.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/htmlparser/htmlparser.html b/webroot/js/ckeditor/_source/tests/core/htmlparser/htmlparser.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/plugins.html b/webroot/js/ckeditor/_source/tests/core/plugins.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/plugins/myplugins/sample/my_plugin.js b/webroot/js/ckeditor/_source/tests/core/plugins/myplugins/sample/my_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/scriptloader.html b/webroot/js/ckeditor/_source/tests/core/scriptloader.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/tools.html b/webroot/js/ckeditor/_source/tests/core/tools.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/core/xml.html b/webroot/js/ckeditor/_source/tests/core/xml.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/plugins/domiterator/domiterator.html b/webroot/js/ckeditor/_source/tests/plugins/domiterator/domiterator.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/plugins/htmldataprocessor/htmldataprocessor.html b/webroot/js/ckeditor/_source/tests/plugins/htmldataprocessor/htmldataprocessor.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/plugins/link/link.html b/webroot/js/ckeditor/_source/tests/plugins/link/link.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/plugins/list/list.html b/webroot/js/ckeditor/_source/tests/plugins/list/list.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/plugins/selection/selection.html b/webroot/js/ckeditor/_source/tests/plugins/selection/selection.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/plugins/styles/styles.html b/webroot/js/ckeditor/_source/tests/plugins/styles/styles.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/test.css b/webroot/js/ckeditor/_source/tests/test.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/test.js b/webroot/js/ckeditor/_source/tests/test.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/testall.html b/webroot/js/ckeditor/_source/tests/testall.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/tests/yuitest.js b/webroot/js/ckeditor/_source/tests/yuitest.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_source/themes/default/theme.js b/webroot/js/ckeditor/_source/themes/default/theme.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/_assets/sample.css b/webroot/js/ckeditor/_tests/_assets/sample.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/_assets/sample.js b/webroot/js/ckeditor/_tests/_assets/sample.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/_assets/sample.txt b/webroot/js/ckeditor/_tests/_assets/sample.txt old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/_assets/sample.xml b/webroot/js/ckeditor/_tests/_assets/sample.xml old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/_assets/sample_xml.txt b/webroot/js/ckeditor/_tests/_assets/sample_xml.txt old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/_editor/custom_config_1.js b/webroot/js/ckeditor/_tests/core/_editor/custom_config_1.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/_editor/custom_config_2.js b/webroot/js/ckeditor/_tests/core/_editor/custom_config_2.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/ajax.html b/webroot/js/ckeditor/_tests/core/ajax.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/bootstrap.html b/webroot/js/ckeditor/_tests/core/bootstrap.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/ckeditor.html b/webroot/js/ckeditor/_tests/core/ckeditor.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/document.html b/webroot/js/ckeditor/_tests/core/dom/document.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/documentfragment.html b/webroot/js/ckeditor/_tests/core/dom/documentfragment.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/element.html b/webroot/js/ckeditor/_tests/core/dom/element.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/node.html b/webroot/js/ckeditor/_tests/core/dom/node.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/range.html b/webroot/js/ckeditor/_tests/core/dom/range.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/text.html b/webroot/js/ckeditor/_tests/core/dom/text.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/walker.html b/webroot/js/ckeditor/_tests/core/dom/walker.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/dom/window.html b/webroot/js/ckeditor/_tests/core/dom/window.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/editor.html b/webroot/js/ckeditor/_tests/core/editor.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/env.html b/webroot/js/ckeditor/_tests/core/env.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/event.html b/webroot/js/ckeditor/_tests/core/event.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/htmlparser/fragment.html b/webroot/js/ckeditor/_tests/core/htmlparser/fragment.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/htmlparser/htmlparser.html b/webroot/js/ckeditor/_tests/core/htmlparser/htmlparser.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/plugins.html b/webroot/js/ckeditor/_tests/core/plugins.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/plugins/myplugins/sample/my_plugin.js b/webroot/js/ckeditor/_tests/core/plugins/myplugins/sample/my_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/scriptloader.html b/webroot/js/ckeditor/_tests/core/scriptloader.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/tools.html b/webroot/js/ckeditor/_tests/core/tools.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/core/xml.html b/webroot/js/ckeditor/_tests/core/xml.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/plugins/domiterator/domiterator.html b/webroot/js/ckeditor/_tests/plugins/domiterator/domiterator.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/plugins/htmldataprocessor/htmldataprocessor.html b/webroot/js/ckeditor/_tests/plugins/htmldataprocessor/htmldataprocessor.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/plugins/link/link.html b/webroot/js/ckeditor/_tests/plugins/link/link.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/plugins/list/list.html b/webroot/js/ckeditor/_tests/plugins/list/list.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/plugins/selection/selection.html b/webroot/js/ckeditor/_tests/plugins/selection/selection.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/plugins/styles/styles.html b/webroot/js/ckeditor/_tests/plugins/styles/styles.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/test.css b/webroot/js/ckeditor/_tests/test.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/test.js b/webroot/js/ckeditor/_tests/test.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/testall.html b/webroot/js/ckeditor/_tests/testall.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/_tests/yuitest.js b/webroot/js/ckeditor/_tests/yuitest.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/ckeditor.js b/webroot/js/ckeditor/ckeditor.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/ckeditor.pack b/webroot/js/ckeditor/ckeditor.pack old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/ckeditor_basic.js b/webroot/js/ckeditor/ckeditor_basic.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/ckeditor_basic_source.js b/webroot/js/ckeditor/ckeditor_basic_source.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/ckeditor_source.js b/webroot/js/ckeditor/ckeditor_source.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/config.js b/webroot/js/ckeditor/config.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/contents.css b/webroot/js/ckeditor/contents.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/images/spacer.gif b/webroot/js/ckeditor/images/spacer.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/_languages.js b/webroot/js/ckeditor/lang/_languages.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/_translationstatus.txt b/webroot/js/ckeditor/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/af.js b/webroot/js/ckeditor/lang/af.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/ar.js b/webroot/js/ckeditor/lang/ar.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/bg.js b/webroot/js/ckeditor/lang/bg.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/bn.js b/webroot/js/ckeditor/lang/bn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/bs.js b/webroot/js/ckeditor/lang/bs.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/ca.js b/webroot/js/ckeditor/lang/ca.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/cs.js b/webroot/js/ckeditor/lang/cs.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/da.js b/webroot/js/ckeditor/lang/da.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/de.js b/webroot/js/ckeditor/lang/de.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/el.js b/webroot/js/ckeditor/lang/el.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/en-au.js b/webroot/js/ckeditor/lang/en-au.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/en-ca.js b/webroot/js/ckeditor/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/en-uk.js b/webroot/js/ckeditor/lang/en-uk.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/en.js b/webroot/js/ckeditor/lang/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/eo.js b/webroot/js/ckeditor/lang/eo.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/es.js b/webroot/js/ckeditor/lang/es.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/et.js b/webroot/js/ckeditor/lang/et.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/eu.js b/webroot/js/ckeditor/lang/eu.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/fa.js b/webroot/js/ckeditor/lang/fa.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/fi.js b/webroot/js/ckeditor/lang/fi.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/fo.js b/webroot/js/ckeditor/lang/fo.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/fr-ca.js b/webroot/js/ckeditor/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/fr.js b/webroot/js/ckeditor/lang/fr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/gl.js b/webroot/js/ckeditor/lang/gl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/gu.js b/webroot/js/ckeditor/lang/gu.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/he.js b/webroot/js/ckeditor/lang/he.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/hi.js b/webroot/js/ckeditor/lang/hi.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/hr.js b/webroot/js/ckeditor/lang/hr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/hu.js b/webroot/js/ckeditor/lang/hu.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/is.js b/webroot/js/ckeditor/lang/is.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/it.js b/webroot/js/ckeditor/lang/it.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/ja.js b/webroot/js/ckeditor/lang/ja.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/km.js b/webroot/js/ckeditor/lang/km.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/ko.js b/webroot/js/ckeditor/lang/ko.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/lt.js b/webroot/js/ckeditor/lang/lt.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/lv.js b/webroot/js/ckeditor/lang/lv.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/mn.js b/webroot/js/ckeditor/lang/mn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/ms.js b/webroot/js/ckeditor/lang/ms.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/nb.js b/webroot/js/ckeditor/lang/nb.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/nl.js b/webroot/js/ckeditor/lang/nl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/no.js b/webroot/js/ckeditor/lang/no.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/pl.js b/webroot/js/ckeditor/lang/pl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/pt-br.js b/webroot/js/ckeditor/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/pt.js b/webroot/js/ckeditor/lang/pt.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/ro.js b/webroot/js/ckeditor/lang/ro.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/ru.js b/webroot/js/ckeditor/lang/ru.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/sk.js b/webroot/js/ckeditor/lang/sk.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/sl.js b/webroot/js/ckeditor/lang/sl.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/sr-latn.js b/webroot/js/ckeditor/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/sr.js b/webroot/js/ckeditor/lang/sr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/sv.js b/webroot/js/ckeditor/lang/sv.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/th.js b/webroot/js/ckeditor/lang/th.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/tr.js b/webroot/js/ckeditor/lang/tr.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/uk.js b/webroot/js/ckeditor/lang/uk.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/vi.js b/webroot/js/ckeditor/lang/vi.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/zh-cn.js b/webroot/js/ckeditor/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/lang/zh.js b/webroot/js/ckeditor/lang/zh.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/about/dialogs/about.js b/webroot/js/ckeditor/plugins/about/dialogs/about.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png b/webroot/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/about/plugin.js b/webroot/js/ckeditor/plugins/about/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/basicstyles/plugin.js b/webroot/js/ckeditor/plugins/basicstyles/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/blockquote/plugin.js b/webroot/js/ckeditor/plugins/blockquote/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/button/plugin.js b/webroot/js/ckeditor/plugins/button/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/clipboard/dialogs/paste.js b/webroot/js/ckeditor/plugins/clipboard/dialogs/paste.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/clipboard/plugin.js b/webroot/js/ckeditor/plugins/clipboard/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/colorbutton/plugin.js b/webroot/js/ckeditor/plugins/colorbutton/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/contextmenu/plugin.js b/webroot/js/ckeditor/plugins/contextmenu/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/dialog/dialogDefinition.js b/webroot/js/ckeditor/plugins/dialog/dialogDefinition.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/dialog/plugin.js b/webroot/js/ckeditor/plugins/dialog/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/dialogui/plugin.js b/webroot/js/ckeditor/plugins/dialogui/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/domiterator/plugin.js b/webroot/js/ckeditor/plugins/domiterator/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/editingblock/plugin.js b/webroot/js/ckeditor/plugins/editingblock/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/elementspath/plugin.js b/webroot/js/ckeditor/plugins/elementspath/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/enterkey/plugin.js b/webroot/js/ckeditor/plugins/enterkey/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/entities/plugin.js b/webroot/js/ckeditor/plugins/entities/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/fakeobjects/plugin.js b/webroot/js/ckeditor/plugins/fakeobjects/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/filebrowser/plugin.js b/webroot/js/ckeditor/plugins/filebrowser/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/find/dialogs/find.js b/webroot/js/ckeditor/plugins/find/dialogs/find.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/find/plugin.js b/webroot/js/ckeditor/plugins/find/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/flash/dialogs/flash.js b/webroot/js/ckeditor/plugins/flash/dialogs/flash.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/flash/images/placeholder.png b/webroot/js/ckeditor/plugins/flash/images/placeholder.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/flash/plugin.js b/webroot/js/ckeditor/plugins/flash/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/floatpanel/plugin.js b/webroot/js/ckeditor/plugins/floatpanel/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/font/plugin.js b/webroot/js/ckeditor/plugins/font/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/format/plugin.js b/webroot/js/ckeditor/plugins/format/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/button.js b/webroot/js/ckeditor/plugins/forms/dialogs/button.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/checkbox.js b/webroot/js/ckeditor/plugins/forms/dialogs/checkbox.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/form.js b/webroot/js/ckeditor/plugins/forms/dialogs/form.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/hiddenfield.js b/webroot/js/ckeditor/plugins/forms/dialogs/hiddenfield.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/radio.js b/webroot/js/ckeditor/plugins/forms/dialogs/radio.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/select.js b/webroot/js/ckeditor/plugins/forms/dialogs/select.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/textarea.js b/webroot/js/ckeditor/plugins/forms/dialogs/textarea.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/dialogs/textfield.js b/webroot/js/ckeditor/plugins/forms/dialogs/textfield.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/forms/plugin.js b/webroot/js/ckeditor/plugins/forms/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/horizontalrule/plugin.js b/webroot/js/ckeditor/plugins/horizontalrule/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/htmldataprocessor/plugin.js b/webroot/js/ckeditor/plugins/htmldataprocessor/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/htmlwriter/plugin.js b/webroot/js/ckeditor/plugins/htmlwriter/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/iframedialog/plugin.js b/webroot/js/ckeditor/plugins/iframedialog/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/image/dialogs/image.js b/webroot/js/ckeditor/plugins/image/dialogs/image.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/image/plugin.js b/webroot/js/ckeditor/plugins/image/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/indent/plugin.js b/webroot/js/ckeditor/plugins/indent/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/justify/plugin.js b/webroot/js/ckeditor/plugins/justify/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/keystrokes/plugin.js b/webroot/js/ckeditor/plugins/keystrokes/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/link/dialogs/anchor.js b/webroot/js/ckeditor/plugins/link/dialogs/anchor.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/link/dialogs/link.js b/webroot/js/ckeditor/plugins/link/dialogs/link.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/link/images/anchor.gif b/webroot/js/ckeditor/plugins/link/images/anchor.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/link/plugin.js b/webroot/js/ckeditor/plugins/link/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/list/plugin.js b/webroot/js/ckeditor/plugins/list/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/listblock/plugin.js b/webroot/js/ckeditor/plugins/listblock/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/maximize/plugin.js b/webroot/js/ckeditor/plugins/maximize/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/menu/plugin.js b/webroot/js/ckeditor/plugins/menu/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/menubutton/plugin.js b/webroot/js/ckeditor/plugins/menubutton/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/newpage/plugin.js b/webroot/js/ckeditor/plugins/newpage/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/pagebreak/images/pagebreak.gif b/webroot/js/ckeditor/plugins/pagebreak/images/pagebreak.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/pagebreak/plugin.js b/webroot/js/ckeditor/plugins/pagebreak/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/panel/plugin.js b/webroot/js/ckeditor/plugins/panel/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/panelbutton/plugin.js b/webroot/js/ckeditor/plugins/panelbutton/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/pastefromword/dialogs/pastefromword.js b/webroot/js/ckeditor/plugins/pastefromword/dialogs/pastefromword.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/pastefromword/plugin.js b/webroot/js/ckeditor/plugins/pastefromword/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/pastetext/dialogs/pastetext.js b/webroot/js/ckeditor/plugins/pastetext/dialogs/pastetext.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/pastetext/plugin.js b/webroot/js/ckeditor/plugins/pastetext/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/popup/plugin.js b/webroot/js/ckeditor/plugins/popup/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/preview/plugin.js b/webroot/js/ckeditor/plugins/preview/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/print/plugin.js b/webroot/js/ckeditor/plugins/print/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/removeformat/plugin.js b/webroot/js/ckeditor/plugins/removeformat/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/resize/plugin.js b/webroot/js/ckeditor/plugins/resize/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/richcombo/plugin.js b/webroot/js/ckeditor/plugins/richcombo/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/save/plugin.js b/webroot/js/ckeditor/plugins/save/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/scayt/dialogs/options.js b/webroot/js/ckeditor/plugins/scayt/dialogs/options.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/scayt/dialogs/toolbar.css b/webroot/js/ckeditor/plugins/scayt/dialogs/toolbar.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/scayt/plugin.js b/webroot/js/ckeditor/plugins/scayt/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/selection/plugin.js b/webroot/js/ckeditor/plugins/selection/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_address.png b/webroot/js/ckeditor/plugins/showblocks/images/block_address.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_blockquote.png b/webroot/js/ckeditor/plugins/showblocks/images/block_blockquote.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_div.png b/webroot/js/ckeditor/plugins/showblocks/images/block_div.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_h1.png b/webroot/js/ckeditor/plugins/showblocks/images/block_h1.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_h2.png b/webroot/js/ckeditor/plugins/showblocks/images/block_h2.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_h3.png b/webroot/js/ckeditor/plugins/showblocks/images/block_h3.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_h4.png b/webroot/js/ckeditor/plugins/showblocks/images/block_h4.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_h5.png b/webroot/js/ckeditor/plugins/showblocks/images/block_h5.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_h6.png b/webroot/js/ckeditor/plugins/showblocks/images/block_h6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_p.png b/webroot/js/ckeditor/plugins/showblocks/images/block_p.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/images/block_pre.png b/webroot/js/ckeditor/plugins/showblocks/images/block_pre.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/showblocks/plugin.js b/webroot/js/ckeditor/plugins/showblocks/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/dialogs/smiley.js b/webroot/js/ckeditor/plugins/smiley/dialogs/smiley.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/angel_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/angel_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/angry_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/angry_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/broken_heart.gif b/webroot/js/ckeditor/plugins/smiley/images/broken_heart.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/confused_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/confused_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/cry_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/cry_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/devil_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/devil_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/embaressed_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/embaressed_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/envelope.gif b/webroot/js/ckeditor/plugins/smiley/images/envelope.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/heart.gif b/webroot/js/ckeditor/plugins/smiley/images/heart.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/kiss.gif b/webroot/js/ckeditor/plugins/smiley/images/kiss.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/lightbulb.gif b/webroot/js/ckeditor/plugins/smiley/images/lightbulb.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/omg_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/omg_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/regular_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/regular_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/sad_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/sad_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/shades_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/shades_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/teeth_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/teeth_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/thumbs_down.gif b/webroot/js/ckeditor/plugins/smiley/images/thumbs_down.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/thumbs_up.gif b/webroot/js/ckeditor/plugins/smiley/images/thumbs_up.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/tounge_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/tounge_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/images/wink_smile.gif b/webroot/js/ckeditor/plugins/smiley/images/wink_smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/smiley/plugin.js b/webroot/js/ckeditor/plugins/smiley/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/sourcearea/plugin.js b/webroot/js/ckeditor/plugins/sourcearea/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/specialchar/dialogs/specialchar.js b/webroot/js/ckeditor/plugins/specialchar/dialogs/specialchar.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/specialchar/plugin.js b/webroot/js/ckeditor/plugins/specialchar/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/styles/plugin.js b/webroot/js/ckeditor/plugins/styles/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/stylescombo/plugin.js b/webroot/js/ckeditor/plugins/stylescombo/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/stylescombo/styles/default.js b/webroot/js/ckeditor/plugins/stylescombo/styles/default.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/tab/plugin.js b/webroot/js/ckeditor/plugins/tab/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/table/dialogs/table.js b/webroot/js/ckeditor/plugins/table/dialogs/table.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/table/plugin.js b/webroot/js/ckeditor/plugins/table/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/tabletools/dialogs/tableCell.js b/webroot/js/ckeditor/plugins/tabletools/dialogs/tableCell.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/tabletools/plugin.js b/webroot/js/ckeditor/plugins/tabletools/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/templates/dialogs/templates.js b/webroot/js/ckeditor/plugins/templates/dialogs/templates.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/templates/plugin.js b/webroot/js/ckeditor/plugins/templates/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/templates/templates/default.js b/webroot/js/ckeditor/plugins/templates/templates/default.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/templates/templates/images/template1.gif b/webroot/js/ckeditor/plugins/templates/templates/images/template1.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/templates/templates/images/template2.gif b/webroot/js/ckeditor/plugins/templates/templates/images/template2.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/templates/templates/images/template3.gif b/webroot/js/ckeditor/plugins/templates/templates/images/template3.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/toolbar/plugin.js b/webroot/js/ckeditor/plugins/toolbar/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/dialogs/uicolor.js b/webroot/js/ckeditor/plugins/uicolor/dialogs/uicolor.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/lang/en.js b/webroot/js/ckeditor/plugins/uicolor/lang/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/plugin.js b/webroot/js/ckeditor/plugins/uicolor/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/uicolor.gif b/webroot/js/ckeditor/plugins/uicolor/uicolor.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png b/webroot/js/ckeditor/plugins/uicolor/yui/assets/hue_bg.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png b/webroot/js/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png b/webroot/js/ckeditor/plugins/uicolor/yui/assets/picker_mask.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png b/webroot/js/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/yui/assets/yui.css b/webroot/js/ckeditor/plugins/uicolor/yui/assets/yui.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/uicolor/yui/yui.js b/webroot/js/ckeditor/plugins/uicolor/yui/yui.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/undo/plugin.js b/webroot/js/ckeditor/plugins/undo/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/wsc/dialogs/ciframe.html b/webroot/js/ckeditor/plugins/wsc/dialogs/ciframe.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/webroot/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/wsc/dialogs/wsc.css b/webroot/js/ckeditor/plugins/wsc/dialogs/wsc.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/wsc/dialogs/wsc.js b/webroot/js/ckeditor/plugins/wsc/dialogs/wsc.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/wsc/plugin.js b/webroot/js/ckeditor/plugins/wsc/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/plugins/wysiwygarea/plugin.js b/webroot/js/ckeditor/plugins/wysiwygarea/plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/dialog.css b/webroot/js/ckeditor/skins/kama/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/editor.css b/webroot/js/ckeditor/skins/kama/editor.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/icons.png b/webroot/js/ckeditor/skins/kama/icons.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/dialog_sides.gif b/webroot/js/ckeditor/skins/kama/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/dialog_sides.png b/webroot/js/ckeditor/skins/kama/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/dialog_sides_rtl.png b/webroot/js/ckeditor/skins/kama/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/mini.gif b/webroot/js/ckeditor/skins/kama/images/mini.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/noimage.png b/webroot/js/ckeditor/skins/kama/images/noimage.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/sprites.png b/webroot/js/ckeditor/skins/kama/images/sprites.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/sprites_ie6.png b/webroot/js/ckeditor/skins/kama/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/images/toolbar_start.gif b/webroot/js/ckeditor/skins/kama/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/skin.js b/webroot/js/ckeditor/skins/kama/skin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/kama/templates.css b/webroot/js/ckeditor/skins/kama/templates.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/dialog.css b/webroot/js/ckeditor/skins/office2003/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/editor.css b/webroot/js/ckeditor/skins/office2003/editor.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/icons.png b/webroot/js/ckeditor/skins/office2003/icons.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/images/dialog_sides.gif b/webroot/js/ckeditor/skins/office2003/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/images/dialog_sides.png b/webroot/js/ckeditor/skins/office2003/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png b/webroot/js/ckeditor/skins/office2003/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/images/mini.gif b/webroot/js/ckeditor/skins/office2003/images/mini.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/images/noimage.png b/webroot/js/ckeditor/skins/office2003/images/noimage.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/images/sprites.png b/webroot/js/ckeditor/skins/office2003/images/sprites.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/images/sprites_ie6.png b/webroot/js/ckeditor/skins/office2003/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/skin.js b/webroot/js/ckeditor/skins/office2003/skin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/office2003/templates.css b/webroot/js/ckeditor/skins/office2003/templates.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/dialog.css b/webroot/js/ckeditor/skins/v2/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/editor.css b/webroot/js/ckeditor/skins/v2/editor.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/icons.png b/webroot/js/ckeditor/skins/v2/icons.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/dialog_sides.gif b/webroot/js/ckeditor/skins/v2/images/dialog_sides.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/dialog_sides.png b/webroot/js/ckeditor/skins/v2/images/dialog_sides.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/dialog_sides_rtl.png b/webroot/js/ckeditor/skins/v2/images/dialog_sides_rtl.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/mini.gif b/webroot/js/ckeditor/skins/v2/images/mini.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/noimage.png b/webroot/js/ckeditor/skins/v2/images/noimage.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/sprites.png b/webroot/js/ckeditor/skins/v2/images/sprites.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/sprites_ie6.png b/webroot/js/ckeditor/skins/v2/images/sprites_ie6.png old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/images/toolbar_start.gif b/webroot/js/ckeditor/skins/v2/images/toolbar_start.gif old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/skin.js b/webroot/js/ckeditor/skins/v2/skin.js old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/skins/v2/templates.css b/webroot/js/ckeditor/skins/v2/templates.css old mode 100644 new mode 100755 diff --git a/webroot/js/ckeditor/themes/default/theme.js b/webroot/js/ckeditor/themes/default/theme.js old mode 100644 new mode 100755 diff --git a/webroot/js/prototype.js b/webroot/js/prototype.js old mode 100644 new mode 100755 diff --git a/webroot/js/qtip.js b/webroot/js/qtip.js old mode 100644 new mode 100755 diff --git a/webroot/js/qtip.js~ b/webroot/js/qtip.js~ old mode 100644 new mode 100755 diff --git a/webroot/js/quotenik/add_datetime.js b/webroot/js/quotenik/add_datetime.js old mode 100644 new mode 100755 diff --git a/webroot/js/quotenik/product_buildup.js b/webroot/js/quotenik/product_buildup.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/langs/en.js b/webroot/js/tiny_mce/langs/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/license.txt b/webroot/js/tiny_mce/license.txt old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advhr/css/advhr.css b/webroot/js/tiny_mce/plugins/advhr/css/advhr.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advhr/editor_plugin.js b/webroot/js/tiny_mce/plugins/advhr/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advhr/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/advhr/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advhr/js/rule.js b/webroot/js/tiny_mce/plugins/advhr/js/rule.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advhr/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/advhr/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advhr/rule.htm b/webroot/js/tiny_mce/plugins/advhr/rule.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advimage/css/advimage.css b/webroot/js/tiny_mce/plugins/advimage/css/advimage.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advimage/editor_plugin.js b/webroot/js/tiny_mce/plugins/advimage/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advimage/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/advimage/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advimage/image.htm b/webroot/js/tiny_mce/plugins/advimage/image.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advimage/img/sample.gif b/webroot/js/tiny_mce/plugins/advimage/img/sample.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advimage/js/image.js b/webroot/js/tiny_mce/plugins/advimage/js/image.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advimage/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/advimage/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advlink/css/advlink.css b/webroot/js/tiny_mce/plugins/advlink/css/advlink.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advlink/editor_plugin.js b/webroot/js/tiny_mce/plugins/advlink/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advlink/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/advlink/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advlink/js/advlink.js b/webroot/js/tiny_mce/plugins/advlink/js/advlink.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advlink/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/advlink/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/advlink/link.htm b/webroot/js/tiny_mce/plugins/advlink/link.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/autosave/editor_plugin.js b/webroot/js/tiny_mce/plugins/autosave/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/autosave/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/autosave/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/bbcode/editor_plugin.js b/webroot/js/tiny_mce/plugins/bbcode/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/bbcode/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/bbcode/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/compat2x/editor_plugin.js b/webroot/js/tiny_mce/plugins/compat2x/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/compat2x/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/compat2x/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/contextmenu/editor_plugin.js b/webroot/js/tiny_mce/plugins/contextmenu/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/directionality/editor_plugin.js b/webroot/js/tiny_mce/plugins/directionality/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/directionality/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/directionality/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/editor_plugin.js b/webroot/js/tiny_mce/plugins/emotions/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/emotions/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/emotions.htm b/webroot/js/tiny_mce/plugins/emotions/emotions.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-cool.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-cool.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-cry.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-cry.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-frown.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-frown.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-smile.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-smile.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-wink.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-wink.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/img/smiley-yell.gif b/webroot/js/tiny_mce/plugins/emotions/img/smiley-yell.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/js/emotions.js b/webroot/js/tiny_mce/plugins/emotions/js/emotions.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/emotions/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/emotions/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/example/dialog.htm b/webroot/js/tiny_mce/plugins/example/dialog.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/example/editor_plugin.js b/webroot/js/tiny_mce/plugins/example/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/example/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/example/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/example/img/example.gif b/webroot/js/tiny_mce/plugins/example/img/example.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/example/js/dialog.js b/webroot/js/tiny_mce/plugins/example/js/dialog.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/example/langs/en.js b/webroot/js/tiny_mce/plugins/example/langs/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/example/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/example/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullpage/css/fullpage.css b/webroot/js/tiny_mce/plugins/fullpage/css/fullpage.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullpage/editor_plugin.js b/webroot/js/tiny_mce/plugins/fullpage/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullpage/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/fullpage/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullpage/fullpage.htm b/webroot/js/tiny_mce/plugins/fullpage/fullpage.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullpage/js/fullpage.js b/webroot/js/tiny_mce/plugins/fullpage/js/fullpage.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullpage/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/fullpage/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullscreen/editor_plugin.js b/webroot/js/tiny_mce/plugins/fullscreen/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/fullscreen/fullscreen.htm b/webroot/js/tiny_mce/plugins/fullscreen/fullscreen.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/iespell/editor_plugin.js b/webroot/js/tiny_mce/plugins/iespell/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/iespell/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/iespell/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin.js b/webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css b/webroot/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/inlinepopups/template.htm b/webroot/js/tiny_mce/plugins/inlinepopups/template.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin.js b/webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/layer/editor_plugin.js b/webroot/js/tiny_mce/plugins/layer/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/layer/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/layer/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/css/content.css b/webroot/js/tiny_mce/plugins/media/css/content.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/css/media.css b/webroot/js/tiny_mce/plugins/media/css/media.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/editor_plugin.js b/webroot/js/tiny_mce/plugins/media/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/media/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/img/flash.gif b/webroot/js/tiny_mce/plugins/media/img/flash.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/img/flv_player.swf b/webroot/js/tiny_mce/plugins/media/img/flv_player.swf old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/img/quicktime.gif b/webroot/js/tiny_mce/plugins/media/img/quicktime.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/img/realmedia.gif b/webroot/js/tiny_mce/plugins/media/img/realmedia.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/img/shockwave.gif b/webroot/js/tiny_mce/plugins/media/img/shockwave.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/img/trans.gif b/webroot/js/tiny_mce/plugins/media/img/trans.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/img/windowsmedia.gif b/webroot/js/tiny_mce/plugins/media/img/windowsmedia.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/js/embed.js b/webroot/js/tiny_mce/plugins/media/js/embed.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/js/media.js b/webroot/js/tiny_mce/plugins/media/js/media.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/media/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/media/media.htm b/webroot/js/tiny_mce/plugins/media/media.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin.js b/webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/noneditable/editor_plugin.js b/webroot/js/tiny_mce/plugins/noneditable/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/noneditable/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/noneditable/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/pagebreak/css/content.css b/webroot/js/tiny_mce/plugins/pagebreak/css/content.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/pagebreak/editor_plugin.js b/webroot/js/tiny_mce/plugins/pagebreak/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif b/webroot/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/pagebreak/img/trans.gif b/webroot/js/tiny_mce/plugins/pagebreak/img/trans.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/blank.htm b/webroot/js/tiny_mce/plugins/paste/blank.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/css/blank.css b/webroot/js/tiny_mce/plugins/paste/css/blank.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/css/pasteword.css b/webroot/js/tiny_mce/plugins/paste/css/pasteword.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/editor_plugin.js b/webroot/js/tiny_mce/plugins/paste/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/paste/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/js/pastetext.js b/webroot/js/tiny_mce/plugins/paste/js/pastetext.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/js/pasteword.js b/webroot/js/tiny_mce/plugins/paste/js/pasteword.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/paste/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/pastetext.htm b/webroot/js/tiny_mce/plugins/paste/pastetext.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/paste/pasteword.htm b/webroot/js/tiny_mce/plugins/paste/pasteword.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/preview/editor_plugin.js b/webroot/js/tiny_mce/plugins/preview/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/preview/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/preview/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/preview/example.html b/webroot/js/tiny_mce/plugins/preview/example.html old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/preview/jscripts/embed.js b/webroot/js/tiny_mce/plugins/preview/jscripts/embed.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/preview/preview.html b/webroot/js/tiny_mce/plugins/preview/preview.html old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/print/editor_plugin.js b/webroot/js/tiny_mce/plugins/print/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/print/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/print/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/safari/blank.htm b/webroot/js/tiny_mce/plugins/safari/blank.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/safari/editor_plugin.js b/webroot/js/tiny_mce/plugins/safari/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/safari/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/safari/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/save/editor_plugin.js b/webroot/js/tiny_mce/plugins/save/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/save/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/save/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/searchreplace/css/searchreplace.css b/webroot/js/tiny_mce/plugins/searchreplace/css/searchreplace.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/searchreplace/editor_plugin.js b/webroot/js/tiny_mce/plugins/searchreplace/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/searchreplace/js/searchreplace.js b/webroot/js/tiny_mce/plugins/searchreplace/js/searchreplace.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/searchreplace/searchreplace.htm b/webroot/js/tiny_mce/plugins/searchreplace/searchreplace.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/spellchecker/css/content.css b/webroot/js/tiny_mce/plugins/spellchecker/css/content.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/spellchecker/editor_plugin.js b/webroot/js/tiny_mce/plugins/spellchecker/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/spellchecker/img/wline.gif b/webroot/js/tiny_mce/plugins/spellchecker/img/wline.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/style/css/props.css b/webroot/js/tiny_mce/plugins/style/css/props.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/style/editor_plugin.js b/webroot/js/tiny_mce/plugins/style/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/style/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/style/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/style/js/props.js b/webroot/js/tiny_mce/plugins/style/js/props.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/style/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/style/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/style/props.htm b/webroot/js/tiny_mce/plugins/style/props.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/cell.htm b/webroot/js/tiny_mce/plugins/table/cell.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/css/cell.css b/webroot/js/tiny_mce/plugins/table/css/cell.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/css/row.css b/webroot/js/tiny_mce/plugins/table/css/row.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/css/table.css b/webroot/js/tiny_mce/plugins/table/css/table.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/editor_plugin.js b/webroot/js/tiny_mce/plugins/table/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/table/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/js/cell.js b/webroot/js/tiny_mce/plugins/table/js/cell.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/js/merge_cells.js b/webroot/js/tiny_mce/plugins/table/js/merge_cells.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/js/row.js b/webroot/js/tiny_mce/plugins/table/js/row.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/js/table.js b/webroot/js/tiny_mce/plugins/table/js/table.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/table/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/merge_cells.htm b/webroot/js/tiny_mce/plugins/table/merge_cells.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/row.htm b/webroot/js/tiny_mce/plugins/table/row.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/table/table.htm b/webroot/js/tiny_mce/plugins/table/table.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/template/blank.htm b/webroot/js/tiny_mce/plugins/template/blank.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/template/css/template.css b/webroot/js/tiny_mce/plugins/template/css/template.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/template/editor_plugin.js b/webroot/js/tiny_mce/plugins/template/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/template/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/template/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/template/js/template.js b/webroot/js/tiny_mce/plugins/template/js/template.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/template/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/template/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/template/template.htm b/webroot/js/tiny_mce/plugins/template/template.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/visualchars/editor_plugin.js b/webroot/js/tiny_mce/plugins/visualchars/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/visualchars/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/visualchars/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/abbr.htm b/webroot/js/tiny_mce/plugins/xhtmlxtras/abbr.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/acronym.htm b/webroot/js/tiny_mce/plugins/xhtmlxtras/acronym.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/attributes.htm b/webroot/js/tiny_mce/plugins/xhtmlxtras/attributes.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/cite.htm b/webroot/js/tiny_mce/plugins/xhtmlxtras/cite.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css b/webroot/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/css/popup.css b/webroot/js/tiny_mce/plugins/xhtmlxtras/css/popup.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/del.htm b/webroot/js/tiny_mce/plugins/xhtmlxtras/del.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/ins.htm b/webroot/js/tiny_mce/plugins/xhtmlxtras/ins.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/js/cite.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/js/cite.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/js/del.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/js/del.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/js/ins.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/js/ins.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js b/webroot/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/about.htm b/webroot/js/tiny_mce/themes/advanced/about.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/anchor.htm b/webroot/js/tiny_mce/themes/advanced/anchor.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/charmap.htm b/webroot/js/tiny_mce/themes/advanced/charmap.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/color_picker.htm b/webroot/js/tiny_mce/themes/advanced/color_picker.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/editor_template.js b/webroot/js/tiny_mce/themes/advanced/editor_template.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/editor_template_src.js b/webroot/js/tiny_mce/themes/advanced/editor_template_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/image.htm b/webroot/js/tiny_mce/themes/advanced/image.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/img/colorpicker.jpg b/webroot/js/tiny_mce/themes/advanced/img/colorpicker.jpg old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/img/icons.gif b/webroot/js/tiny_mce/themes/advanced/img/icons.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/js/about.js b/webroot/js/tiny_mce/themes/advanced/js/about.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/js/anchor.js b/webroot/js/tiny_mce/themes/advanced/js/anchor.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/js/charmap.js b/webroot/js/tiny_mce/themes/advanced/js/charmap.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/js/color_picker.js b/webroot/js/tiny_mce/themes/advanced/js/color_picker.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/js/image.js b/webroot/js/tiny_mce/themes/advanced/js/image.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/js/link.js b/webroot/js/tiny_mce/themes/advanced/js/link.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/js/source_editor.js b/webroot/js/tiny_mce/themes/advanced/js/source_editor.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/langs/en.js b/webroot/js/tiny_mce/themes/advanced/langs/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/langs/en_dlg.js b/webroot/js/tiny_mce/themes/advanced/langs/en_dlg.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/link.htm b/webroot/js/tiny_mce/themes/advanced/link.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/content.css b/webroot/js/tiny_mce/themes/advanced/skins/default/content.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/dialog.css b/webroot/js/tiny_mce/themes/advanced/skins/default/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/img/buttons.png b/webroot/js/tiny_mce/themes/advanced/skins/default/img/buttons.png old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/img/items.gif b/webroot/js/tiny_mce/themes/advanced/skins/default/img/items.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif b/webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif b/webroot/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/img/progress.gif b/webroot/js/tiny_mce/themes/advanced/skins/default/img/progress.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif b/webroot/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/default/ui.css b/webroot/js/tiny_mce/themes/advanced/skins/default/ui.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/content.css b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/content.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui.css b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css b/webroot/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/advanced/source_editor.htm b/webroot/js/tiny_mce/themes/advanced/source_editor.htm old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/editor_template.js b/webroot/js/tiny_mce/themes/simple/editor_template.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/editor_template_src.js b/webroot/js/tiny_mce/themes/simple/editor_template_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/img/icons.gif b/webroot/js/tiny_mce/themes/simple/img/icons.gif old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/langs/en.js b/webroot/js/tiny_mce/themes/simple/langs/en.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/skins/default/content.css b/webroot/js/tiny_mce/themes/simple/skins/default/content.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/skins/default/ui.css b/webroot/js/tiny_mce/themes/simple/skins/default/ui.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/skins/o2k7/content.css b/webroot/js/tiny_mce/themes/simple/skins/o2k7/content.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png b/webroot/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/themes/simple/skins/o2k7/ui.css b/webroot/js/tiny_mce/themes/simple/skins/o2k7/ui.css old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/tiny_init.js b/webroot/js/tiny_mce/tiny_init.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/tiny_mce.js b/webroot/js/tiny_mce/tiny_mce.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/tiny_mce_popup.js b/webroot/js/tiny_mce/tiny_mce_popup.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/tiny_mce_src.js b/webroot/js/tiny_mce/tiny_mce_src.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/toggleTinyMCEWrapper.js b/webroot/js/tiny_mce/toggleTinyMCEWrapper.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/utils/editable_selects.js b/webroot/js/tiny_mce/utils/editable_selects.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/utils/form_utils.js b/webroot/js/tiny_mce/utils/form_utils.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/utils/mctabs.js b/webroot/js/tiny_mce/utils/mctabs.js old mode 100644 new mode 100755 diff --git a/webroot/js/tiny_mce/utils/validate.js b/webroot/js/tiny_mce/utils/validate.js old mode 100644 new mode 100755